~drizzle-pbxt/drizzle/drizzle-pbxt-2

« back to all changes in this revision

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

  • Committer: Paul McCullagh
  • Date: 2009-11-10 14:18:39 UTC
  • mfrom: (1038.1.7 drizzle-pbxt-pre-merge)
  • Revision ID: paul.mccullagh@primebase.org-20091110141839-2j3k43b17ag6f605
Merged Drizzle trunk and PBXT 1.0.09

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`;
 
10
/*  */
 
11
DROP Table IF EXISTS `t2`;
 
12
/*  */
 
13
CREATE TABLE t1 ( id INT NOT NULL , padding VARCHAR(200) NOT NULL , PRIMARY KEY (id) );
 
14
/*  */
 
15
RENAME TABLE t1 TO t2;
 
16
SET GLOBAL command_log_truncate_debug= true;