mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-32203 Raise notes when an index cannot be used on data type mismatch
Raise notes if indexes cannot be used: - in case of data type or collation mismatch (diferent error messages). - in case if a table field was replaced to something else (e.g. Item_func_conv_charset) during a condition rewrite. Added option to write warnings and notes to the slow query log for slow queries. New variables added/changed: - note_verbosity, with is a set of the following options: basic - All old notes unusable_keys - Print warnings about keys that cannot be used for select, delete or update. explain - Print unusable_keys warnings for EXPLAIN querys. The default is 'basic,explain'. This means that for old installations the only notable new behavior is that one will get notes about unusable keys when one does an EXPLAIN for a query. One can turn all of all notes by either setting note_verbosity to "" or setting sql_notes=0. - log_slow_verbosity has a new option 'warnings'. If this is set then warnings and notes generated are printed in the slow query log (up to log_slow_max_warnings times per statement). - log_slow_max_warnings - Max number of warnings written to slow query log. Other things: - One can now use =ALL for any 'set' variable to set all options at once. For example using "note_verbosity=ALL" in a config file or "SET @@note_verbosity=ALL' in SQL. - mysqldump will in the future use @@note_verbosity=""' instead of @sql_notes=0 to disable notes. - Added "enum class Data_type_compatibility" and changing the return type of all Field::can_optimize*() methods from "bool" to this new data type. Reviewer & Co-author: Alexander Barkov <bar@mariadb.com> - The code that prints out the notes comes mainly from Alexander
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
-- source include/have_debug.inc
|
||||
-- source include/have_sequence.inc
|
||||
|
||||
SET @org_slow_query_log= @@global.slow_query_log;
|
||||
SET @org_log_output= @@global.log_output;
|
||||
@ -82,6 +83,71 @@ TRUNCATE TABLE mysql.slow_log;
|
||||
--source include/log_slow_debug_common.inc
|
||||
CALL show_slow_log();
|
||||
|
||||
--echo #
|
||||
--echo # Start of 10.6 tests
|
||||
--echo #
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-32203 Raise notes when an index cannot be used on data type
|
||||
--echo # mismatch
|
||||
--echo #
|
||||
|
||||
CREATE TABLE t1 (a VARCHAR(10), KEY(a));
|
||||
insert into t1 select seq from seq_0_to_31;
|
||||
|
||||
SET note_verbosity=all;
|
||||
SET log_slow_verbosity=all;
|
||||
SET global log_output='FILE';
|
||||
set @org_slow_query_log_file=@@global.slow_query_log_file;
|
||||
|
||||
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
|
||||
eval set global slow_query_log_file='$MYSQLTEST_VARDIR/tmp/log_slow_debug-1.log';
|
||||
FLUSH SLOW LOGS;
|
||||
--disable_ps_protocol
|
||||
SELECT * FROM t1 WHERE a=10;
|
||||
EXPLAIN SELECT * FROM t1 WHERE a=10;
|
||||
--enable_ps_protocol
|
||||
|
||||
--let SEARCH_FILE = `SELECT @@slow_query_log_file`
|
||||
--let SEARCH_PATTERN=# Warnings
|
||||
--source include/search_pattern_in_file.inc
|
||||
--let SEARCH_PATTERN= # Note.*Cannot use key.*varchar.*10.*int
|
||||
--source include/search_pattern_in_file.inc
|
||||
|
||||
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
|
||||
eval set global slow_query_log_file='$MYSQLTEST_VARDIR/tmp/log_slow_debug-2.log';
|
||||
SET note_verbosity="explain";
|
||||
FLUSH SLOW LOGS;
|
||||
EXPLAIN SELECT * FROM t1 WHERE a=10;
|
||||
|
||||
--let SEARCH_FILE = `SELECT @@slow_query_log_file`
|
||||
--let SEARCH_PATTERN=# Warnings
|
||||
--source include/search_pattern_in_file.inc
|
||||
--let SEARCH_PATTERN= # Note.*Cannot use key.*varchar.*10.*int
|
||||
--source include/search_pattern_in_file.inc
|
||||
|
||||
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
|
||||
eval set global slow_query_log_file='$MYSQLTEST_VARDIR/tmp/log_slow_debug-3.log';
|
||||
SET log_slow_verbosity=replace(@@log_slow_verbosity, "warnings", "");
|
||||
SET log_slow_verbosity=replace(@@log_slow_verbosity, "full", "");
|
||||
SET note_verbosity=all;
|
||||
FLUSH SLOW LOGS;
|
||||
SELECT * FROM t1 WHERE a=10;
|
||||
EXPLAIN SELECT * FROM t1 WHERE a=10;
|
||||
|
||||
--let SEARCH_FILE = `SELECT @@slow_query_log_file`
|
||||
--let SEARCH_PATTERN=# Warnings
|
||||
--source include/search_pattern_in_file.inc
|
||||
--let SEARCH_PATTERN= # Note.*Cannot use key.*varchar.*10.*int
|
||||
--source include/search_pattern_in_file.inc
|
||||
|
||||
set @@global.slow_query_log_file= @org_slow_query_log_file;
|
||||
|
||||
--remove_file $MYSQLTEST_VARDIR/tmp/log_slow_debug-1.log
|
||||
--remove_file $MYSQLTEST_VARDIR/tmp/log_slow_debug-2.log
|
||||
--remove_file $MYSQLTEST_VARDIR/tmp/log_slow_debug-3.log
|
||||
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo #
|
||||
--echo # Clean up
|
||||
|
Reference in New Issue
Block a user