1# suite/funcs_1/t/is_tables_innodb.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 InnoDB 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# This test cannot be used for the embedded server because we check here 14# privileges. 15--source include/not_embedded.inc 16 17--source include/have_innodb.inc 18let $engine_type= InnoDB; 19 20# We look only for the tables created by suite/funcs_1/datadict/tables.inc 21let $my_where = WHERE table_schema LIKE 'test%' AND table_type = 'BASE TABLE'; 22--source suite/funcs_1/datadict/tables.inc 23