~drizzle-trunk/drizzle/development

1 by brian
clean slate
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