1
0

[HUDI-4325] fix spark sql procedure cause ParseException with semicolon (#5982)

* [HUDI-4325] fix saprk sql procedure cause ParseException with semicolon
This commit is contained in:
KnightChess
2022-06-28 09:44:41 +08:00
committed by GitHub
parent b14ed47f21
commit 09dc001430
2 changed files with 21 additions and 1 deletions

View File

@@ -42,7 +42,7 @@
}
singleStatement
: statement EOF
: statement ';'* EOF
;
statement