~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema.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:
6
6
DROP SCHEMA IF EXISTS data_dictionary;
7
7
--enable_warnings
8
8
 
9
 
CREATE SCHEMA data_dictionary;
10
 
 
11
 
 
12
9
# Test for data_dictionary.tables &
13
10
# show tables
14
11
 
330
327
#FROM data_dictionary.tables
331
328
#WHERE table_schema="data_dictionary"
332
329
#ORDER BY table_name;
333
 
 
334
 
 
335
 
DROP SCHEMA data_dictionary;