is_tables_memory.test 794 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
# suite/funcs_1/t/is_tables_memory.test
#
# Check the content of information_schema.tables about tables within
# the databases created by the user.
# Variant for storage engine MEMORY
#
# Author:
# 2008-01-23 mleich WL#4203 Reorganize and fix the data dictionary tests of
#                           testsuite funcs_1
#                   Create this script based on older scripts and new code.
#

Matthias Leich mleich@mysql.com's avatar
Matthias Leich mleich@mysql.com committed
13 14 15 16
# This test cannot be used for the embedded server because we check here
# privileges.
--source include/not_embedded.inc

17 18 19
let $engine_type= MEMORY;
SET @@session.sql_mode = 'NO_ENGINE_SUBSTITUTION';

Matthias Leich mleich@mysql.com's avatar
Matthias Leich mleich@mysql.com committed
20
# We look only for the tables created by suite/funcs_1/datadict/tables.inc
21
let $my_where = WHERE table_schema LIKE 'test%' AND table_type = 'BASE TABLE';
Matthias Leich mleich@mysql.com's avatar
Matthias Leich mleich@mysql.com committed
22
--source suite/funcs_1/datadict/tables.inc