MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
check_var_limit.inc
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 r/check_var_limit.require
7 disable_query_log;
8 eval select SUBSTRING_INDEX("$LIMIT", "\\t", -1) BETWEEN $MIN_LIMIT AND $MAX_LIMIT as "limit";
9 enable_query_log;