~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/data_dictionary_like_info.result

  • Committer: Brian Aker
  • Date: 2011-01-11 07:12:09 UTC
  • mfrom: (2068.5.6 catalogs)
  • Revision ID: brian@gir-3-20110111071209-ntbex8btgayoq00v
MergeĀ inĀ catalogs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
263
263
t2
264
264
drop table t1,t2;
265
265
select 1 as f1 from data_dictionary.tables  where "CHARACTER_SETS"=
266
 
(select cast(table_name as char)  from data_dictionary.tables
267
 
order by table_name limit 1) limit 1;
 
266
(select cast(table_name as char)  from data_dictionary.tables WHERE TABLE_SCHEMA=schema()
 
267
AND TABLE_NAME = "CHARACTER_SETS"
 
268
 order by table_name limit 1) AND TABLE_SCHEMA=schema() limit 1;
268
269
f1
269
 
1
270
270
select t.table_name, group_concat(t.table_schema, '.', t.table_name),
271
271
count(*) as num1
272
272
from data_dictionary.tables t