~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/select.test

  • 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:
1771
1771
#
1772
1772
 
1773
1773
CREATE TABLE t1 (
1774
 
  id mediumint(8) unsigned NOT NULL auto_increment,
 
1774
  id bigint(8) unsigned NOT NULL auto_increment,
1775
1775
  pseudo varchar(35) NOT NULL default '',
1776
1776
  PRIMARY KEY  (id),
1777
1777
  UNIQUE KEY pseudo (pseudo)
2309
2309
DROP TABLE t1;
2310
2310
 
2311
2311
#
2312
 
# Bug #32103: optimizer crash when join on int and mediumint with variable in 
 
2312
# Bug #32103: optimizer crash when join on int and bigint with variable in 
2313
2313
#             where clause
2314
2314
#
2315
2315