Skip to content

Commit 64841d1

Browse files
authored
Unify SQL parser terms: stmt / clause / expression (#69)
1 parent 6c1e0c8 commit 64841d1

22 files changed

+963
-965
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func main() {
5555
inputBytes = []byte(os.Args[len(os.Args)-1])
5656
}
5757
parser := clickhouse.NewParser(string(inputBytes))
58-
stmts, err := parser.ParseStatements()
58+
stmts, err := parser.ParseStmts()
5959
if err != nil {
6060
fmt.Printf("parse statements error: %s\n", err.Error())
6161
os.Exit(1)

0 commit comments

Comments
 (0)