mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
5242048883
No more string matching mysql-test/include/check-warnings.test: Check return value from check_warnings and call skip if ok mysql-test/include/mtr_check.sql: Improve readability mysql-test/include/mtr_warnings.sql: Add out parameter for result. Increase the max_allowed_packet variable so the load_file works even if the server is started with low such value
12 lines
262 B
Text
12 lines
262 B
Text
|
|
#
|
|
# This test is executed once after each test to check the servers
|
|
# for unexpected warnings found in the servers error log
|
|
#
|
|
--disable_query_log
|
|
call mtr.check_warnings(@result);
|
|
if (`select @result = 0`){
|
|
skip OK;
|
|
}
|
|
echo Found warnings;
|
|
--enable_query_log
|