Skip to content

Commit

Permalink
update the test results
Browse files Browse the repository at this point in the history
  • Loading branch information
Reminiscent committed May 19, 2022
1 parent 5636cc6 commit ed7f2c1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions planner/core/testdata/join_reorder_suite_out.json
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,9 @@
" └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))",
" └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo"
],
"Warning": null
"Warning": [
"Warning 1815 leading hint is inapplicable, check if the leading hint table has join conditions with other tables"
]
},
{
"SQL": "select /*+ leading(t2, t1, t3) */ * from t, t1, t2, t3 where t.a = t1.a and t1.b=t2.b;",
Expand Down Expand Up @@ -952,7 +954,9 @@
" └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))",
" └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo"
],
"Warning": null
"Warning": [
"Warning 1815 leading hint is inapplicable, check if the leading hint table has join conditions with other tables"
]
},
{
"SQL": "select /*+ leading(t1) */ * from t2 join (t1 join t3 on t1.a=t3.a) on t2.a=1;",
Expand Down Expand Up @@ -1041,7 +1045,9 @@
" └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))",
" └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo"
],
"Warning": null
"Warning": [
"Warning 1815 leading hint is inapplicable, check if the leading hint table has join conditions with other tables"
]
},
{
"SQL": "select /*+ leading(t2, t1, t3) */ * from t2 join (t1 join t3 on t1.a=t3.a) on t2.a=1;",
Expand Down

0 comments on commit ed7f2c1

Please sign in to comment.