~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/data_dictionary_like_info.test

Merge catalog with current trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
319
319
#
320
320
--sorted_result
321
321
select 1 as f1 from data_dictionary.tables  where "CHARACTER_SETS"=
322
 
(select cast(table_name as char)  from data_dictionary.tables
323
 
 order by table_name limit 1) limit 1;
 
322
(select cast(table_name as char)  from data_dictionary.tables WHERE TABLE_SCHEMA=schema()
 
323
 AND TABLE_NAME = "CHARACTER_SETS"
 
324
 order by table_name limit 1) AND TABLE_SCHEMA=schema() limit 1;
324
325
 
325
326
--replace_column 2 #
326
327
select t.table_name, group_concat(t.table_schema, '.', t.table_name),