~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/data_dictionary_like_info.test

  • Committer: Andrew Hutchings
  • Date: 2010-09-08 19:03:09 UTC
  • mfrom: (1750 staging)
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: andrew@linuxjedi.co.uk-20100908190309-mya1nu7xvo1fpvk8
Merge trunk into branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
--error ER_PARSE_ERROR
176
176
alter database data_dictionary;
177
177
use data_dictionary;
178
 
#--error 1044
 
178
#--error ER_DBACCESS_DENIED_ERROR
179
179
#drop table tables;
180
 
#--error 1044
 
180
#--error ER_DBACCESS_DENIED_ERROR
181
181
#alter table tables;
182
182
#
183
183
# Bug #9683 INFORMATION_SCH: Creation of temporary table allowed in Information_schema DB
184
184
#
185
185
use data_dictionary;
186
 
--error 1044
 
186
--error ER_DBACCESS_DENIED_ERROR
187
187
create temporary table schemas(f1 char(10));
188
188
#
189
189
#
370
370
#
371
371
# Bug#30079 A check for "hidden" I_S tables is flawed
372
372
#
373
 
#--error 1109
 
373
#--error ER_UNKNOWN_TABLE
374
374
#show fields from data_dictionary.table_names;
375
 
#--error 1109
 
375
#--error ER_UNKNOWN_TABLE
376
376
#show keys from data_dictionary.table_names;
377
377
 
378
378
SET max_heap_table_size = DEFAULT;