~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/731189.result

  • Committer: Brian Aker
  • Date: 2011-03-08 19:26:05 UTC
  • mto: (2227.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2228.
  • Revision ID: brian@tangent.org-20110308192605-2tab6d49c0m3kjt8
parse_table_proto <-- const

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t3 (a int) replicate=FALSE;
 
2
SHOW CREATE TABLE t3;
 
3
Table   Create Table
 
4
t3      CREATE TABLE `t3` (
 
5
  `a` INT DEFAULT NULL
 
6
) ENGINE=InnoDB COLLATE = utf8_general_ci
 
7
DROP TABLE t3;