File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2329,7 +2329,7 @@ CREATE TABLE t1 (c INT KEY) ENGINE=InnoDB;
2329
2329
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;
2330
2330
c c
2331
2331
DROP TABLE t1;
2332
- SET optimizer_use_condition_selectivity=1 ;
2332
+ SET optimizer_use_condition_selectivity=@tmp_oucs ;
2333
2333
#
2334
2334
# End of 11.0 tests
2335
2335
#
Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ set @tmp_oucs= @@optimizer_use_condition_selectivity;
289
289
CREATE TABLE t1 (c INT KEY) ENGINE=InnoDB;
290
290
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;
291
291
DROP TABLE t1;
292
- SET optimizer_use_condition_selectivity=1 ;
292
+ SET optimizer_use_condition_selectivity=@tmp_oucs ;
293
293
294
294
--echo #
295
295
--echo # End of 11.0 tests
You can’t perform that action at this time.
0 commit comments