~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema.test

Add in new show work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
444
444
#
445
445
# query the SCHEMATA table
446
446
#
447
 
SELECT schema_name
448
 
FROM data_dictionary.schemas
449
 
ORDER BY schema_name;
 
447
--replace_column 1 #
 
448
SELECT count(schema_name) FROM data_dictionary.schemas ORDER BY schema_name;
450
449
 
451
450
--replace_column 1 # 2 #
452
451
SHOW STATUS;
488
487
# how do we test for this if the contents of this table can change
489
488
# depend on what plugins are configured for use?
490
489
#
491
 
#SELECT *
492
 
#FROM plugins;
 
490
--replace_column 1 #
 
491
SELECT count(*) FROM data_dictionary.plugins;