~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/varbinary.test

  • Committer: Jay Pipes
  • Date: 2009-02-04 15:44:25 UTC
  • mfrom: (829 drizzle)
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090204154425-th8xfk2ujz2y8xwg
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
chmod 0777 $MYSQLTEST_VARDIR/master-data/test/t1.MYD;
54
54
copy_file std_data/bug19371.MYI $MYSQLTEST_VARDIR/master-data/test/t1.MYI;
55
55
chmod 0777 $MYSQLTEST_VARDIR/master-data/test/t1.MYI;
56
 
--error ER_NO_SUCH_TABLE
 
56
--error 1033
57
57
show create table t1;
58
 
--error ER_BAD_TABLE_ERROR
59
58
drop table t1;
60
 
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.frm
61
 
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYD
62
 
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.MYI 
63
59
 
64
60
# Check that the fix does not affect table created with current version
65
61
create table t1(a varbinary(255));
80
76
--enable_warnings
81
77
 
82
78
create table table_28127_a(0b02 int);
83
 
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
84
79
show create table table_28127_a;
85
80
 
86
81
create table table_28127_b(0b2 int);
87
 
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
88
82
show create table table_28127_b;
89
83
 
90
84
drop table table_28127_a;