~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/show_check.test

  • Committer: Brian Aker
  • Date: 2010-11-08 18:54:26 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1916.
  • Revision ID: brian@tangent.org-20101108185426-fymkf2xnelupf11x
Rename lock methods to be style + well make sense.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
show create table t1;
107
107
alter table t1 ROW_FORMAT=dynamic;
108
108
show create table t1;
109
 
ALTER TABLE t1 COMMENT="" ROW_FORMAT=default;
 
109
ALTER TABLE t1 COMMENT="", ROW_FORMAT='default';
110
110
show create table t1;
111
111
drop table t1;
112
112
 
301
301
#
302
302
# BUG #12591 (SHOW TABLES FROM dbname produces wrong error message)
303
303
#
304
 
--error 1049
 
304
--error ER_BAD_DB_ERROR
305
305
SHOW TABLES FROM non_existing_database;
306
306
 
307
307
--echo End of 4.1 tests