-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
planner: add more test cases for join order hint #34740
Conversation
� Conflicts: � planner/core/rule_join_reorder.go � planner/core/rule_join_reorder_greedy.go
…-leading-hint � Conflicts: � planner/core/rule_join_reorder.go � planner/core/rule_join_reorder_greedy.go
…-leading-hint � Conflicts: � planner/core/rule_join_reorder.go
…Cases � Conflicts: � planner/core/logical_plan_builder.go � planner/core/rule_join_reorder.go � planner/core/rule_join_reorder_test.go � planner/core/testdata/join_reorder_suite_in.json � planner/core/testdata/join_reorder_suite_out.json
Code Coverage Details: https://codecov.io/github/pingcap/tidb/commit/e5d815748adec16f7362b118b2078780dcc0efc7 |
"Warning": null | ||
}, | ||
{ | ||
"SQL": "select /*+ leading(t2) hash_join(t1) */ * from t, t1, t2, t3 where t.a = t1.a and t1.b=t2.b;", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It needs to be marked in the document. If the join algorithm hint is set, the join node will be skipped when splitting the join group
/merge |
This pull request has been accepted and is ready to merge. Commit hash: ed7f2c1
|
/run-mysql-test |
/merge |
/run-mysql-test |
TiDB MergeCI notify🔴 Bad News! [1] CI still failing after this pr merged.
|
What problem does this PR solve?
Issue Number: ref #29932
Problem Summary:
add more test cases for join order hint and add some warning messages for some forbidden cases,
What is changed and how it works?
add more test cases for join order hint and add some warning messages for some forbidden cases,
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.