~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/suite/funcs_1/t/is_tables_memory.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# suite/funcs_1/t/is_tables_memory.test
 
2
#
 
3
# Check the content of information_schema.tables about tables within
 
4
# the databases created by the user.
 
5
# Variant for storage engine MEMORY
 
6
#
 
7
# Author:
 
8
# 2008-01-23 mleich WL#4203 Reorganize and fix the data dictionary tests of
 
9
#                           testsuite funcs_1
 
10
#                   Create this script based on older scripts and new code.
 
11
#
 
12
 
 
13
let $engine_type= MEMORY;
 
14
SET @@session.sql_mode = 'NO_ENGINE_SUBSTITUTION';
 
15
--source suite/funcs_1/datadict/datadict_load.inc
 
16
--enable_abort_on_error
 
17
 
 
18
# We look only for the tables created by datadict_load.inc.
 
19
let $my_where = WHERE table_schema LIKE 'test%' AND table_type = 'BASE TABLE';
 
20
--source suite/funcs_1/datadict/tables1.inc
 
21
 
 
22
--source suite/funcs_1/include/cleanup.inc