We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi community,
This issue is for WeOpen-Star ref to #6480
How is a SQL parsed? SQL definition file ->(Parse to) AST ->(Visit it) SQLStatment
SQL definition file
AST
SQLStatment
SQL definitions
mvn install the current_file_module
xxxVisitor.class
1.Left recursion can not work well in Antlr4,
Left recursion
a : b | a b ; b : a c ; c : ... ;
you can consider the following one,
a : b* ; b : a c ; c : ... ;
The text was updated successfully, but these errors were encountered:
I want to try this work
Sorry, something went wrong.
Hi community, this issue still keep open to pick up.
I would like to try
@tianhao960 Welcome, I will assign this issue to you.
hi, @tuichenchuxin , I'm sorry that the pull request just fix the create procedure one; I'll post a new pr to fix the alter and drop statement. thanks
tianhao960
Successfully merging a pull request may close this issue.
Hi community,
This issue is for WeOpen-Star
ref to #6480
Background
How is a SQL parsed?
SQL definition file
->(Parse to)
AST
->(Visit it)
SQLStatment
Process
SQL definitions
in Oficial SQL Doc and ShardingSphere SQL Docmvn install the current_file_module
xxxVisitor.class
)Notice
1.
Left recursion
can not work well in Antlr4,you can consider the following one,
subtask
The text was updated successfully, but these errors were encountered: