diff options
author | monty@mysql.com/narttu.mysql.fi <> | 2007-01-29 01:47:35 +0200 |
---|---|---|
committer | monty@mysql.com/narttu.mysql.fi <> | 2007-01-29 01:47:35 +0200 |
commit | 410fc81a726d586e67b45beb0406e1e681494ce4 (patch) | |
tree | 9a81ea8e9e695584f7915cc104eda630d7b98bc8 /mysql-test/t/mysqlcheck.test | |
parent | 8a80e36ac3facdfba626fd758b6e4490d3ea9ddf (diff) | |
download | mariadb-git-410fc81a726d586e67b45beb0406e1e681494ce4.tar.gz |
After merge fixes
Removed a lot of compiler warnings
Removed not used variables, functions and labels
Initialize some variables that could be used unitialized (fatal bugs)
%ll -> %l
Diffstat (limited to 'mysql-test/t/mysqlcheck.test')
-rw-r--r-- | mysql-test/t/mysqlcheck.test | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/mysql-test/t/mysqlcheck.test b/mysql-test/t/mysqlcheck.test index ed99adf172c..d233546f9e3 100644 --- a/mysql-test/t/mysqlcheck.test +++ b/mysql-test/t/mysqlcheck.test @@ -1,11 +1,3 @@ -# Clean up after previous tests -# - ---disable_warnings -DROP TABLE IF EXISTS t1; -drop view if exists v1; -drop database if exists client_test_db; ---enable_warnings # Embedded server doesn't support external clients --source include/not_embedded.inc @@ -14,13 +6,16 @@ drop database if exists client_test_db; # depends on the presence of the log tables (which are CSV-based). --source include/have_csv.inc +# +# Clean up after previous tests +# + --disable_warnings +DROP TABLE IF EXISTS t1; +drop view if exists v1; drop database if exists client_test_db; --enable_warnings -DROP SCHEMA test; -CREATE SCHEMA test; -use test; # # Bug #13783 mysqlcheck tries to optimize and analyze information_schema # |