Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
5e09c42f
Commit
5e09c42f
authored
Mar 01, 2010
by
Dmitry Lenev
Browse files
Options
Browse Files
Download
Plain Diff
Merged recent changes from mysql-next-mr-bugfixing
into mysql-next-4284.
parents
629be094
b71eb419
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
7 deletions
+24
-7
mysql-test/r/greedy_optimizer.result
mysql-test/r/greedy_optimizer.result
+2
-0
mysql-test/r/mysqld--help-notwin.result
mysql-test/r/mysqld--help-notwin.result
+3
-2
mysql-test/r/mysqld--help-win.result
mysql-test/r/mysqld--help-win.result
+3
-2
sql/sys_vars.cc
sql/sys_vars.cc
+16
-3
No files found.
mysql-test/r/greedy_optimizer.result
View file @
5e09c42f
...
...
@@ -115,6 +115,8 @@ select @@optimizer_prune_level;
@@optimizer_prune_level
1
set optimizer_search_depth=63;
Warnings:
Warning 1287 'optimizer-search-depth=63' is deprecated and will be removed in a future release. Please use a search depth less than 63 instead
select @@optimizer_search_depth;
@@optimizer_search_depth
63
...
...
mysql-test/r/mysqld--help-notwin.result
View file @
5e09c42f
...
...
@@ -396,8 +396,9 @@ The following options may be given as the first argument:
relation result in faster optimization, but may produce
very bad query plans. If set to 0, the system will
automatically pick a reasonable value; if set to 63, the
optimizer will switch to the original find_best
search(used for testing/comparison)
optimizer will switch to the original find_best search.
NOTE: The value 63 and its associated behaviour is
deprecated
--optimizer-switch=name
optimizer_switch=option=val[,option=val...], where option
is one of {index_merge, index_merge_union,
...
...
mysql-test/r/mysqld--help-win.result
View file @
5e09c42f
...
...
@@ -396,8 +396,9 @@ The following options may be given as the first argument:
relation result in faster optimization, but may produce
very bad query plans. If set to 0, the system will
automatically pick a reasonable value; if set to 63, the
optimizer will switch to the original find_best
search(used for testing/comparison)
optimizer will switch to the original find_best search.
NOTE: The value 63 and its associated behaviour is
deprecated
--optimizer-switch=name
optimizer_switch=option=val[,option=val...], where option
is one of {index_merge, index_merge_union,
...
...
sql/sys_vars.cc
View file @
5e09c42f
...
...
@@ -1305,6 +1305,17 @@ static Sys_var_ulong Sys_optimizer_prune_level(
SESSION_VAR
(
optimizer_prune_level
),
CMD_LINE
(
REQUIRED_ARG
),
VALID_RANGE
(
0
,
1
),
DEFAULT
(
1
),
BLOCK_SIZE
(
1
));
/** Warns about deprecated value 63 */
static
bool
fix_optimizer_search_depth
(
sys_var
*
self
,
THD
*
thd
,
enum_var_type
type
)
{
SV
*
sv
=
type
==
OPT_GLOBAL
?
&
global_system_variables
:
&
thd
->
variables
;
if
(
sv
->
optimizer_search_depth
==
MAX_TABLES
+
2
)
WARN_DEPRECATED
(
thd
,
6
,
0
,
"optimizer-search-depth=63"
,
"a search depth less than 63"
);
return
false
;
}
static
Sys_var_ulong
Sys_optimizer_search_depth
(
"optimizer_search_depth"
,
"Maximum depth of search performed by the query optimizer. Values "
...
...
@@ -1313,10 +1324,12 @@ static Sys_var_ulong Sys_optimizer_search_depth(
"than the number of tables in a relation result in faster "
"optimization, but may produce very bad query plans. If set to 0, "
"the system will automatically pick a reasonable value; if set to "
"63, the optimizer will switch to the original find_best search"
"
(used for testing/comparison)
"
,
"63, the optimizer will switch to the original find_best search
.
"
"
NOTE: The value 63 and its associated behaviour is deprecated
"
,
SESSION_VAR
(
optimizer_search_depth
),
CMD_LINE
(
REQUIRED_ARG
),
VALID_RANGE
(
0
,
MAX_TABLES
+
2
),
DEFAULT
(
MAX_TABLES
+
1
),
BLOCK_SIZE
(
1
));
VALID_RANGE
(
0
,
MAX_TABLES
+
2
),
DEFAULT
(
MAX_TABLES
+
1
),
BLOCK_SIZE
(
1
),
NO_MUTEX_GUARD
,
NOT_IN_BINLOG
,
ON_CHECK
(
0
),
ON_UPDATE
(
fix_optimizer_search_depth
));
static
const
char
*
optimizer_switch_names
[]
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment