~drizzle-developers/drizzle/elliott-release

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tests/r/show_fields.result

  • Committer: Patrick Crews
  • Date: 2011-02-01 20:33:06 UTC
  • mfrom: (1845.2.288 drizzle)
  • Revision ID: gleebix@gmail.com-20110201203306-mwq2rk0it81tlwxh
Merged Trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
show create table a;
6
6
Table   Create Table
7
7
a       CREATE TABLE `a` (
8
 
  `a` BIGINT NOT NULL AUTO_INCREMENT,
 
8
  `a` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
9
9
  UNIQUE KEY `a` (`a`)
10
10
) ENGINE=InnoDB COLLATE = utf8_general_ci
11
11
create table b ( b int);