2008-03-07 17:33:07 +01:00
|
|
|
# suite/funcs_1/t/is_tables_ndb.test
|
|
|
|
#
|
|
|
|
# Check the content of information_schema.tables about tables within
|
|
|
|
# the databases created by the user.
|
|
|
|
# Variant for storage engine NDB
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2008-06-16 20:39:58 +02:00
|
|
|
# This test cannot be used for the embedded server because we check here
|
|
|
|
# privileges.
|
|
|
|
--source include/not_embedded.inc
|
|
|
|
|
2008-03-07 17:33:07 +01:00
|
|
|
--source include/have_ndb.inc
|
|
|
|
let $engine_type= NDB;
|
|
|
|
|
2008-06-16 20:39:58 +02:00
|
|
|
# We look only for the tables created by suite/funcs_1/datadict/tables.inc
|
2008-03-07 17:33:07 +01:00
|
|
|
let $my_where = WHERE table_schema LIKE 'test%' AND table_type = 'BASE TABLE';
|
2008-06-16 20:39:58 +02:00
|
|
|
--source suite/funcs_1/datadict/tables.inc
|