-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
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
Support parsing MySQL CALL sql #30974
Comments
Hi there, I'd like to help with this issue, but I want to figure out something first. The statements ‘CALL mysql.sp_set_firewall_group_mode(group, mode);’ and ‘CALL sp_migrate_firewall_user_to_group('fwuser@localhost', 'mygroup');’ require MySQL Enterprise Firewall to be installed in order to execute correctly in the latest MySQL while the others run fine without any additional installations. Do we need to support this scenario as well? Thanks! |
@zhuruixuan @strongduanmu Looking forward to your reply. |
I think we should support because this is a legal MySQL statement. |
Can we make the G4 rule more general to support any |
@strongduanmu Got it, please assign this issue to me. Thank you! |
@Kiritsgu Assigned, and good luck for you. |
@strongduanmu Hi, I found that this issue has already been resolved in a previous PR #31133. Out of the four examples in this issue, the following two can be executed correctly. The third example cannot be executed correctly because the variable 'group' is a reserved keyword in MySQL. The last example cannot be executed due to a syntax error in the official documentation example itself (missing a quotation mark after ‘mygroup’). |
@Kiritsgu Thank you for your great work, I will close this issue. |
Background
Hi community.
The ShardingSphere SQL parser engine helps users to parse SQL to create the AST (Abstract Syntax Tree) and visit the AST to get SQLStatement (Java Object). Currently, we are planning to enhance the support for MySQL SQL parsing in ShardingSphere.
More details:
https://shardingsphere.apache.org/document/current/en/reference/sharding/parse/
Issue Background Explanation
The current issue involves using a custom web scraping script to fetch SQL cases from the official website of a corresponding database. These SQL cases are then passed to ShardingSphere's parsing engine for analysis. For SQL cases that fail to be parsed successfully, every 3 to 5 SQL cases are grouped together as an issue.
Task
This issue is to support more MySQL sql parsing, as follows:
link
link
link
link
Overall Procedure
If you intend to participate in fixing this issue, please feel free to leave a comment below the issue. Community members will assign the issue accordingly.
Once you have claimed the issue, please review the syntax of the SQL on the official website of the corresponding database. Execute the SQL on the respective database to ensure the correctness of the SQL syntax.
Next, execute the problematic SQL cases mentioned above in the database (you can quickly start the corresponding database using the Docker image for that database, and then connect to it using
a client you are familiar with), to ensure that the SQL syntax itself is correct.
Fixing ANTLR Grammar Parsing Issue
Once you have confirmed the correctness of the SQL syntax, you can validate and fix the grammar parsing issue in ShardingSphere.
If it is an ANTLR parsing error message, try to repair the
.g4
file by comparing it with the official database syntax until the SQL can be correctly parsed by ANTLR.When there is no error message in the ANTLR Preview window, it means that ANTLR can correctly parse the SQL.
Visitor problem fix
After ANTLR parses SQL into an abstract syntax tree, ShardingSphere will access the abstract syntax tree through Visitor and extract the required information.
If you need to extract Segments, you need to first execute:
Under the shardingsphere-parser module to compile the entire parser module.
Then rewrite the corresponding visit method in SQLStatementVisitorr as needed to extract the corresponding Segment.
Add assertion test file
After the above SQL parsing problem is repaired, the corresponding Test needs to be added.
The steps are as follows:
sql-case
in thesql/supported
directory.shardingsphere-test-it-parser
module.org.apache.shardingsphere.test.it.sql.parser.internal.InternalSQLParserIT
After SQL Parser IT runs successfully, you can submit a PR.
Relevant Skills
The text was updated successfully, but these errors were encountered: