mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
- Backport @@optimizer_switch support from 6.0
- Add support for setting it as a server commandline argument - Add support for those switches: = no_index_merge = no_index_merge_union = no_index_merge_sort_union = no_index_merge_intersection mysql-test/r/index_merge_myisam.result: Testcases for index_merge related @@optimizer_switch flags. mysql-test/t/index_merge_myisam.test: Testcases for index_merge related @@optimizer_switch flags. sql/set_var.cc: - Backport @@optimizer_switch support from 6.0 - Add support for setting it as a server commandline argument sql/sql_class.h: - Backport @@optimizer_switch support from 6.0 sql/sql_select.h: - Backport @@optimizer_switch support from 6.0
This commit is contained in:
parent
fecaef26af
commit
cb6581d894
9 changed files with 382 additions and 23 deletions
|
|
@ -523,6 +523,12 @@ protected:
|
|||
#define MODE_NO_ENGINE_SUBSTITUTION (MODE_HIGH_NOT_PRECEDENCE*2)
|
||||
#define MODE_PAD_CHAR_TO_FULL_LENGTH (ULL(1) << 31)
|
||||
|
||||
/* @@optimizer_switch flags */
|
||||
#define OPTIMIZER_SWITCH_NO_INDEX_MERGE 1
|
||||
#define OPTIMIZER_SWITCH_NO_INDEX_MERGE_UNION 2
|
||||
#define OPTIMIZER_SWITCH_NO_INDEX_MERGE_SORT_UNION 4
|
||||
#define OPTIMIZER_SWITCH_NO_INDEX_MERGE_INTERSECT 8
|
||||
|
||||
/*
|
||||
Replication uses 8 bytes to store SQL_MODE in the binary log. The day you
|
||||
use strictly more than 64 bits by adding one more define above, you should
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue