~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/t/innodb_status.test

  • Committer: Brian Aker
  • Date: 2010-02-24 23:10:30 UTC
  • mto: (1273.13.101 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100224231030-4dwc2iwcih5cootv
createSchema() now works via SE interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Innodb Status table.
2
2
 
3
 
CREATE SCHEMA data_dictionary;
4
3
use data_dictionary;
5
4
 
6
5
select count(*) from data_dictionary.INNODB_STATUS ;
7
6
 
8
7
show create table INNODB_STATUS;
9
 
 
10
 
DROP SCHEMA data_dictionary;