Skip to content

Commit

Permalink
Unify SQL parser terms: stmt / clause / expression (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
git-hulk committed Jun 17, 2024
1 parent 6c1e0c8 commit 64841d1
Show file tree
Hide file tree
Showing 22 changed files with 963 additions and 965 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func main() {
inputBytes = []byte(os.Args[len(os.Args)-1])
}
parser := clickhouse.NewParser(string(inputBytes))
stmts, err := parser.ParseStatements()
stmts, err := parser.ParseStmts()
if err != nil {
fmt.Printf("parse statements error: %s\n", err.Error())
os.Exit(1)
Expand Down
Loading

0 comments on commit 64841d1

Please sign in to comment.