~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/replication_table_ddl.result

  • Committer: Brian Aker
  • Date: 2010-11-19 00:00:46 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1944.
  • Revision ID: brian@tangent.org-20101119000046-iajnd847tmo595ts
Fix style issue around table for message (though this is imperfect,...)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE A (A SERIAL) REPLICATION = TRUE;
2
 
SHOW CREATE TABLE A;
3
 
Table   Create Table
4
 
A       CREATE TABLE `A` (
5
 
  `A` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
6
 
  UNIQUE KEY `A` (`A`)
7
 
) ENGINE=InnoDB COLLATE = utf8_general_ci
8
 
DROP TABLE A;
9
 
CREATE TABLE A (A SERIAL) REPLICATION = FALSE;
10
 
SHOW CREATE TABLE A;
11
 
Table   Create Table
12
 
A       CREATE TABLE `A` (
13
 
  `A` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
14
 
  UNIQUE KEY `A` (`A`)
15
 
) ENGINE=InnoDB COLLATE = utf8_general_ci REPLICATION = FALSE
16
 
DROP TABLE A;