samsetegne commented on a change in pull request #27567: [SPARK-30822][SQL]
Remove semicolon at the end of a sql query
URL: https://github.com/apache/spark/pull/27567#discussion_r396799019
##########
File path:
sql/catalyst/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBase.g4
##########
@@ -64,7 +64,7 @@ grammar SqlBase;
}
singleStatement
- : statement EOF
+ : statement (';')*? EOF
Review comment:
Yes @cloud-fan you're right, I updated this and also squashed all the
commits.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]