~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/command_log/r/alter.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
, PRIMARY KEY (id)
 
6
);
 
7
INSERT INTO t1 VALUES (1, "I love testing.");
 
8
INSERT INTO t1 VALUES (2, "I hate testing.");
 
9
ALTER TABLE t1 ADD dummy INT;
 
10
/*  */
 
11
DROP TABLE IF EXISTS t1;
 
12
/*  */
 
13
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL , PRIMARY KEY (id) );
 
14
/*  */
 
15
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("1", "I love testing.");
 
16
/*  */
 
17
INSERT INTO `test`.`t1` (`id`, `padding`) VALUES ("2", "I hate testing.");
 
18
/*  */
 
19
ALTER TABLE t1 ADD dummy INT;
 
20
SET GLOBAL command_log_truncate_debug= true;