blob: 9f404201ab8f1a93d0dc95809149972d52d37d97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# 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;
}
--enable_query_log
echo ^ Found warnings!!;
exit;
|