~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/show_check.test

  • Committer: Brian Aker
  • Date: 2010-08-18 20:55:22 UTC
  • mfrom: (1711.6.3 staging)
  • Revision ID: brian@tangent.org-20100818205522-esgel82hp9kyl3l2
Merge mutex patch

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 ER_BAD_DB_ERROR
 
304
--error 1049
305
305
SHOW TABLES FROM non_existing_database;
306
306
 
307
307
--echo End of 4.1 tests
312
312
#
313
313
--error ER_BAD_DB_ERROR
314
314
SHOW TABLES FROM no_such_database;
315
 
--error ER_TABLE_UNKNOWN
 
315
--error ER_NO_SUCH_TABLE
316
316
SHOW COLUMNS FROM no_such_table;
317
317
 
318
318
#
348
348
#
349
349
# Bug#26402 Server crashes with old-style named table
350
350
#
351
 
--error ER_TABLE_UNKNOWN,ER_FILE_NOT_FOUND
 
351
--error ER_NO_SUCH_TABLE,ER_FILE_NOT_FOUND
352
352
show columns from `#mysql50#????????`;
353
353
 
354
 
#
355
 
# Test error output for SHOW engine_name STATUS
356
 
#
357
 
--error ER_USE_DATA_DICTIONARY
358
 
show innodb status;
359
 
 
360
354
--echo End of 5.1 tests