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
f6cb93ba
Commit
f6cb93ba
authored
Mar 20, 2023
by
Sergei Petrunia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the testcase for MDEV-30693
parent
221b5d77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/main/selectivity_innodb.result
mysql-test/main/selectivity_innodb.result
+1
-1
mysql-test/main/selectivity_innodb.test
mysql-test/main/selectivity_innodb.test
+1
-1
No files found.
mysql-test/main/selectivity_innodb.result
View file @
f6cb93ba
...
...
@@ -2329,7 +2329,7 @@ CREATE TABLE t1 (c INT KEY) ENGINE=InnoDB;
SELECT * FROM (SELECT * FROM t1) a JOIN (SELECT * FROM (SELECT * FROM t1 GROUP BY c) d WHERE c>1) b ON a.c=b.c;
c c
DROP TABLE t1;
SET optimizer_use_condition_selectivity=
1
;
SET optimizer_use_condition_selectivity=
@tmp_oucs
;
#
# End of 11.0 tests
#
mysql-test/main/selectivity_innodb.test
View file @
f6cb93ba
...
...
@@ -289,7 +289,7 @@ set @tmp_oucs= @@optimizer_use_condition_selectivity;
CREATE
TABLE
t1
(
c
INT
KEY
)
ENGINE
=
InnoDB
;
SELECT
*
FROM
(
SELECT
*
FROM
t1
)
a
JOIN
(
SELECT
*
FROM
(
SELECT
*
FROM
t1
GROUP
BY
c
)
d
WHERE
c
>
1
)
b
ON
a
.
c
=
b
.
c
;
DROP
TABLE
t1
;
SET
optimizer_use_condition_selectivity
=
1
;
SET
optimizer_use_condition_selectivity
=
@
tmp_oucs
;
--
echo
#
--
echo
# End of 11.0 tests
...
...
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