mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
ce2eb6d8cb
tree to get rid of multiple typos in CS comments and unify the patch.
24 lines
588 B
Text
24 lines
588 B
Text
#
|
|
# This test must examine integrity of system database "mysql"
|
|
#
|
|
|
|
# check that CSV engine was compiled in, as the result of the test
|
|
# depends on the presence of the log tables (which are CSV-based).
|
|
--source include/have_csv.inc
|
|
|
|
# First delete some tables maybe left over from previous tests
|
|
--disable_warnings
|
|
drop table if exists t1,t1aa,t2aa;
|
|
--enable_warnings
|
|
|
|
-- disable_query_log
|
|
use mysql;
|
|
-- enable_query_log
|
|
-- source include/system_db_struct.inc
|
|
-- disable_query_log
|
|
use test;
|
|
-- enable_query_log
|
|
# keep results same with system_mysql_db_fix
|
|
show tables;
|
|
|
|
# End of 4.1 tests
|