~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/command_log/r/insert.result

  • Committer: Brian Aker
  • Date: 2009-09-21 23:40:18 UTC
  • mfrom: (1039.5.63 replication)
  • Revision ID: brian@gaz-20090921234018-gd9kqdyigwxtik9z
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
CREATE TABLE t1 (
 
3
id INT NOT NULL
 
4
, padding VARCHAR(200) NOT NULL
 
5
);
 
6
INSERT INTO t1 VALUES (1, "I love testing.");
 
7
INSERT INTO t1 VALUES (2, "I hate testing.");
 
8
/*  */
 
9
DROP TABLE IF EXISTS t1;
 
10
/*  */
 
11
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL );
 
12
/*  */
 
13
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("1", "I love testing.");
 
14
/*  */
 
15
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("2", "I hate testing.");
 
16
SET GLOBAL command_log_truncate_debug= true;