~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/show_check.test

  • Committer: Brian Aker
  • Date: 2010-02-14 02:02:48 UTC
  • mfrom: (1273.13.64 fix_is)
  • Revision ID: brian@gaz-20100214020248-bhovaejhz9fmer3q
Merge in data_dictionary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
  ) comment = 'it\'s a table' ;
90
90
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
91
91
show create table t1;
92
 
show full columns from t1;
 
92
show columns from t1;
93
93
drop table t1;
94
94
 
95
95
create table t1 (a int not null, unique aa (a));
111
111
 
112
112
create table t1 (a decimal(9,2), b decimal (9,0), e double(9,2), f double(5,0), h float(3,2), i float(3,0));
113
113
show columns from t1;
114
 
show full columns from t1;
 
114
show columns from t1;
115
115
drop table t1;
116
116
 
117
117
#
335
335
drop database `mysqlttest\1`;
336
336
 
337
337
#
338
 
# Bug#25081 SHOW FULL TABLES on table with latin chars in name fails
 
338
# Bug#25081 show TABLES on table with latin chars in name fails
339
339
#
340
340
--disable_warnings
341
341
drop table if exists `été`;
342
342
--enable_warnings
343
343
create table `été` (field1 int);
344
 
show full tables;
 
344
show tables;
345
345
drop table `été`;
346
346
 
347
347
#