~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/command_log/r/rename.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, t2;
 
2
CREATE TABLE t1 (
 
3
id INT NOT NULL
 
4
, padding VARCHAR(200) NOT NULL
 
5
, PRIMARY KEY (id)
 
6
);
 
7
RENAME TABLE t1 TO t2;
 
8
/*  */
 
9
DROP TABLE IF EXISTS t1, t2;
 
10
/*  */
 
11
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL , PRIMARY KEY (id) );
 
12
/*  */
 
13
RENAME TABLE t1 TO t2;
 
14
SET GLOBAL command_log_truncate_debug= true;