~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema.test

Merge refactored command line using for innodb

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
# Bug #9404  information_schema: Weird error messages
107
107
# with SELECT SUM() ... GROUP BY queries
108
108
#
109
 
--replace_column 2 #
110
109
SELECT table_schema, count(*) FROM data_dictionary.tables
111
110
WHERE table_name NOT LIKE 'ndb_%' AND 
112
111
table_name NOT LIKE 'falcon%'
264
263
#
265
264
--sorted_result
266
265
select 1 as f1 from data_dictionary.tables  where "CHARACTER_SETS"=
267
 
(select cast(table_name as char)  from data_dictionary.tables WHERE TABLE_SCHEMA=schema()
268
 
 AND TABLE_NAME = "CHARACTER_SETS"
269
 
 order by table_name limit 1) AND TABLE_SCHEMA=schema() limit 1;
 
266
(select cast(table_name as char)  from data_dictionary.tables
 
267
 order by table_name limit 1) limit 1;
270
268
 
271
269
select t.table_name, group_concat(t.table_schema, '.', t.table_name),
272
270
       count(*) as num1