1#
2# Check that second part of $LIMIT is between $MIN_LIMIT and $MAX_LIMIT
3# This is useful to check that a variable from SHOW_VARIABLES is within
4# certain limits. Check query_cache_merge.test for an example of using this.
5#
6-- require include/check_var_limit.require
7disable_query_log;
8eval select SUBSTRING_INDEX("$LIMIT", "\\t", -1) BETWEEN $MIN_LIMIT AND $MAX_LIMIT as "limit";
9enable_query_log;
10