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
9333431e
Commit
9333431e
authored
Nov 03, 2017
by
Igor Babaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjusted tests after changing the default value for
the system variable @@in_subquery_conversion_threshold
parent
5b5aa235
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
1 deletion
+8
-1
mysql-test/r/mysqld--help.result
mysql-test/r/mysqld--help.result
+1
-1
mysql-test/r/range.result
mysql-test/r/range.result
+2
-0
mysql-test/r/range_mrr_icp.result
mysql-test/r/range_mrr_icp.result
+2
-0
mysql-test/t/range.test
mysql-test/t/range.test
+3
-0
No files found.
mysql-test/r/mysqld--help.result
View file @
9333431e
...
...
@@ -1359,7 +1359,7 @@ idle-transaction-timeout 0
idle-write-transaction-timeout 0
ignore-builtin-innodb FALSE
ignore-db-dirs
in-subquery-conversion-threshold 1000
0
in-subquery-conversion-threshold 1000
init-connect
init-file (No default value)
init-rpl-role MASTER
...
...
mysql-test/r/range.result
View file @
9333431e
set in_subquery_conversion_threshold=10000;
drop table if exists t1, t2, t3, t10, t100;
CREATE TABLE t1 (
event_date date DEFAULT '0000-00-00' NOT NULL,
...
...
@@ -3006,3 +3007,4 @@ drop table t1,t2,t3;
#
# End of 10.2 tests
#
set in_subquery_conversion_threshold=default;
mysql-test/r/range_mrr_icp.result
View file @
9333431e
set @mrr_icp_extra_tmp=@@optimizer_switch;
set optimizer_switch='mrr=on,mrr_sort_keys=on,index_condition_pushdown=on';
set in_subquery_conversion_threshold=10000;
drop table if exists t1, t2, t3, t10, t100;
CREATE TABLE t1 (
event_date date DEFAULT '0000-00-00' NOT NULL,
...
...
@@ -3018,4 +3019,5 @@ drop table t1,t2,t3;
#
# End of 10.2 tests
#
set in_subquery_conversion_threshold=default;
set optimizer_switch=@mrr_icp_extra_tmp;
mysql-test/t/range.test
View file @
9333431e
...
...
@@ -3,6 +3,8 @@
#
--
source
include
/
have_innodb
.
inc
set
in_subquery_conversion_threshold
=
10000
;
--
disable_warnings
drop
table
if
exists
t1
,
t2
,
t3
,
t10
,
t100
;
--
enable_warnings
...
...
@@ -2049,3 +2051,4 @@ drop table t1,t2,t3;
--
echo
# End of 10.2 tests
--
echo
#
set
in_subquery_conversion_threshold
=
default
;
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