~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Merging trunk changes from over weekend.

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