~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/select.result

  • Committer: Brian Aker
  • Date: 2008-07-06 03:24:37 UTC
  • Revision ID: brian@tangent.org-20080706032437-gfnpob6l1tjccisl
First pass for removing mediumint (3 byte INT type).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2091
2091
t2      1       fld3    1       fld3    A       NULL    NULL    NULL            BTREE           
2092
2092
drop table t4, t3, t2, t1;
2093
2093
CREATE TABLE t1 (
2094
 
id mediumint(8) unsigned NOT NULL auto_increment,
 
2094
id bigint(8) unsigned NOT NULL auto_increment,
2095
2095
pseudo varchar(35) NOT NULL default '',
2096
2096
PRIMARY KEY  (id),
2097
2097
UNIQUE KEY pseudo (pseudo)