mirror of
https://github.com/MariaDB/server.git
synced 2025-05-31 08:42:45 +03:00
mysql-test/r/not_partition.result: Test result changed after I fixed the error message for not existing engine mysql-test/suite/funcs_1/r/is_columns_is.result: Updated results mysql-test/suite/funcs_1/r/is_engines_innodb.result: Updated results mysql-test/suite/funcs_1/r/is_tables_is.result: Updated results mysql-test/suite/funcs_1/t/is_tables_is.test: Test requires innodb as results depends on innodb mysql-test/suite/innodb_plugin/t/disabled.def: Disable test as it shows errors in valgrind mysql-test/suite/innodb_plugin/t/innodb-use-sys-malloc.test: Test can't be run under valgrind as mysql-test-run resets the innodb_use_sys_malloc flag storage/xtradb/buf/buf0buf.c: Fixed compiler warning by adding casts
21 lines
710 B
Plaintext
21 lines
710 B
Plaintext
# suite/funcs_1/t/is_tables_is.test
|
|
#
|
|
# Check the content of information_schema.tables about tables within
|
|
# the database information_schema.
|
|
#
|
|
# Note: The INFORMATION_SCHEMA table PROFILING is optional (exists in MySQL
|
|
# Community version only) and therefore we exclude it from retrieval.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
--source include/not_embedded.inc
|
|
--source include/have_innodb.inc
|
|
let $my_where = WHERE table_schema = 'information_schema'
|
|
AND table_name <> 'profiling';
|
|
--source suite/funcs_1/datadict/tables1.inc
|
|
|