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

perf: sqlparser yacc codegen #7669

Merged
merged 16 commits into from
Mar 16, 2021
Merged
8 changes: 4 additions & 4 deletions go/vt/sqlparser/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Copyright 2019 The Vitess Authors.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand All @@ -15,7 +15,7 @@
MAKEFLAGS = -s

sql.go: sql.y
go run golang.org/x/tools/cmd/goyacc -o sql.go sql.y
go run ./goyacc -fast-append -o sql.go sql.y
gofmt -w sql.go

clean:
Expand Down
Loading