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

parser, infoschema, executor: Add information_schema.keywords (#48807) #54219

Merged
Merged
Changes from 1 commit
Commits
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
Merge remote-tracking branch 'upstream/release-7.5' into cherry-pick-…
…48807-to-release-7.5
dveeden committed Jul 4, 2024
commit 4e522a0f2767094ec34db74aa72a4656b1c29899
4 changes: 4 additions & 0 deletions pkg/parser/generate_keyword/genkeyword.go
Original file line number Diff line number Diff line change
@@ -97,6 +97,10 @@ func main() {
if err != nil {
log.Fatalf("Failed to create keywords.go: %s", err)
}
err = keywordsFile.Truncate(0)
if err != nil {
log.Fatalf("Failed to create keywords.go: %s", err)
}
_, err = keywordsFile.WriteString(fileStart)
if err != nil {
log.Fatalf("Failed to write fileStart to keywords.go: %s", err)
You are viewing a condensed version of this merge commit. You can view the full changes here.