Skip to content

Commit

Permalink
planner: outer join elimination doesn't consider the ORDER BY items f…
Browse files Browse the repository at this point in the history
…rom the agg func (pingcap#38380) (pingcap#39024)

close pingcap#18216
  • Loading branch information
qw4990 committed Nov 11, 2022
1 parent 5d411f5 commit 906b076
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
13 changes: 13 additions & 0 deletions planner/core/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1525,6 +1525,19 @@ func (s *testIntegrationSuite) TestIndexMergeHint4CNF(c *C) {
}
}

func (s *testIntegrationSuite) TestOuterJoinEliminationForIssue18216(c *C) {
tk := testkit.NewTestKit(c, s.store)
tk.MustExec("use test")
tk.MustExec("drop table if exists t1, t2;")
tk.MustExec("create table t1 (a int, c int);")
tk.MustExec("insert into t1 values (1, 1), (1, 2), (2, 3), (2, 4);")
tk.MustExec("create table t2 (a int, c int);")
tk.MustExec("insert into t2 values (1, 1), (1, 2), (2, 3), (2, 4);")
// The output might be unstable.
tk.MustExec("select group_concat(c order by (select group_concat(c order by a) from t2 where a=t1.a)) from t1; ")
tk.MustQuery("select group_concat(c order by (select group_concat(c order by c) from t2 where a=t1.a), c desc) from t1;").Check(testkit.Rows("2,1,4,3"))
}

func (s *testIntegrationSuite) TestInvisibleIndex(c *C) {
tk := testkit.NewTestKit(c, s.store)

Expand Down
3 changes: 3 additions & 0 deletions planner/core/rule_join_elimination.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,9 @@ func (o *outerJoinEliminator) doOptimize(p LogicalPlan, aggCols []*expression.Co
for _, expr := range aggDesc.Args {
parentCols = append(parentCols, expression.ExtractColumns(expr)...)
}
for _, byItem := range aggDesc.OrderByItems {
parentCols = append(parentCols, expression.ExtractColumns(byItem.Expr)...)
}
}
default:
parentCols = append(parentCols[:0], p.Schema().Columns...)
Expand Down

0 comments on commit 906b076

Please sign in to comment.