diff options
author | Igor Babaev <igor@askmonty.org> | 2013-12-14 19:13:37 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2013-12-14 19:13:37 -0800 |
commit | 8efaff4959efe32ff9bc47c1bf1710cfe9ab21b5 (patch) | |
tree | 1271d94adfb6460c54ceb88d34e023516343f907 /mysql-test/r/selectivity.result | |
parent | 4bce09c104f5c9ddc3600a77c9db44dfa7fd283c (diff) | |
download | mariadb-git-8efaff4959efe32ff9bc47c1bf1710cfe9ab21b5.tar.gz |
Fixed bug mdev-5415.
Do not calculate selectivity of conditions for the tables of the information schema.
Diffstat (limited to 'mysql-test/r/selectivity.result')
-rw-r--r-- | mysql-test/r/selectivity.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/selectivity.result b/mysql-test/r/selectivity.result index e213bc30778..3059431c2e5 100644 --- a/mysql-test/r/selectivity.result +++ b/mysql-test/r/selectivity.result @@ -1158,3 +1158,11 @@ Note 1003 select `test`.`t1`.`i1` AS `i1` from `test`.`t1` semi join (`test`.`t2 set optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; DROP TABLE t1,t2,t3; set use_stat_tables=@save_use_stat_tables; +# +# Bug mdev-5415: query over an information schema table +# when optimizer_use_condition_selectivity=3 +# +set optimizer_use_condition_selectivity = 3; +SELECT * FROM INFORMATION_SCHEMA.TRIGGERS WHERE SQL_MODE != ''; +TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION +set optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity; |