blob: 81847f85c96a9d5c1eb6387e3b67f6d197843b51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# Check if the variable MY_PERROR is set
#
--require r/have_perror.require
disable_query_log;
eval select LENGTH("$MY_PERROR") > 0 as "have_perror";
enable_query_log;
--exec $MY_PERROR 150
--exec $MY_PERROR --silent 120
|