Skip to content
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: binding from cluster statements summary #39737

Merged
merged 29 commits into from
Dec 13, 2022
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2e499f8
commit
fzzf678 Dec 7, 2022
11bdb75
Merge branch 'master' into add_field_stmtSummary
fzzf678 Dec 7, 2022
d7db77c
Merge branch 'master' into add_field_stmtSummary
fzzf678 Dec 8, 2022
c1682ac
Update tables.go
fzzf678 Dec 8, 2022
c5f158f
Merge branch 'master' into add_field_stmtSummary
fzzf678 Dec 8, 2022
c6c1fce
Update index_merge.result
fzzf678 Dec 8, 2022
f00de6b
Merge branch 'add_field_stmtSummary' of https://github.com/fzzf678/ti…
fzzf678 Dec 8, 2022
39b6a2d
ut
fzzf678 Dec 8, 2022
51e0423
Merge branch 'master' into add_field_stmtSummary
fzzf678 Dec 8, 2022
c07c34c
cluster
fzzf678 Dec 8, 2022
f849759
Merge branch 'add_field_stmtSummary' of https://github.com/fzzf678/ti…
fzzf678 Dec 8, 2022
0affe2a
fix ut
fzzf678 Dec 8, 2022
468da50
Merge remote-tracking branch 'upstream/master' into add_field_stmtSum…
fzzf678 Dec 9, 2022
dddf480
bazel
fzzf678 Dec 9, 2022
107d649
order by length(plan_hint)
fzzf678 Dec 9, 2022
bd3b2be
Merge branch 'master' into add_field_stmtSummary
fzzf678 Dec 9, 2022
6aad1d7
Merge branch 'master' into add_field_stmtSummary
qw4990 Dec 12, 2022
ca5a094
Update planbuilder.go
fzzf678 Dec 12, 2022
6577d92
Update planbuilder.go
fzzf678 Dec 12, 2022
e82c537
Update tables_test.go
fzzf678 Dec 12, 2022
4642e15
Merge branch 'add_field_stmtSummary' of https://github.com/fzzf678/ti…
fzzf678 Dec 12, 2022
e4f5298
Merge remote-tracking branch 'upstream/master' into add_field_stmtSum…
fzzf678 Dec 13, 2022
c3731dc
ut
fzzf678 Dec 13, 2022
4258045
Update planbuilder.go
fzzf678 Dec 13, 2022
dbac95d
Merge branch 'master' into add_field_stmtSummary
fzzf678 Dec 13, 2022
d2fc61f
Merge branch 'master' into add_field_stmtSummary
ti-chi-bot Dec 13, 2022
903a124
Merge branch 'master' into add_field_stmtSummary
ti-chi-bot Dec 13, 2022
91a4c42
Merge branch 'master' into add_field_stmtSummary
ti-chi-bot Dec 13, 2022
435987a
Merge branch 'master' into add_field_stmtSummary
ti-chi-bot Dec 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update planbuilder.go
  • Loading branch information
fzzf678 committed Dec 12, 2022
commit ca5a09429e107aa6dcaa47ffb1318a907b59b137
2 changes: 1 addition & 1 deletion planner/core/planbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ func fetchRecordFromClusterStmtSummary(sctx sessionctx.Context, planDigest strin
"order by length(plan_digest) desc"
rs, err := exec.ExecuteInternal(ctx, sql)
if rs == nil {
return nil, errors.New("can't find any plans for '" + planDigest + "'")
return nil, errors.New("cluster can't find any plans for '" + planDigest + "'")
}
if err != nil {
return nil, err
Expand Down