1# suite/funcs_1/t/is_tables_is.test
2#
3# Check the content of information_schema.tables about tables within
4# the database information_schema.
5#
6# Note: The INFORMATION_SCHEMA table PROFILING is optional (exists in MySQL
7#       Community version only) and therefore we exclude it from retrieval.
8#
9# Author:
10# 2008-01-23 mleich WL#4203 Reorganize and fix the data dictionary tests of
11#                           testsuite funcs_1
12#                   Create this script based on older scripts and new code.
13#
14
15let $my_where = WHERE table_schema = 'information_schema'
16AND table_name <> 'profiling' AND table_name not like 'innodb_%';
17--source suite/funcs_1/datadict/tables1.inc
18
19