sql-parser
sql-parser copied to clipboard
Dose "SQLStatementTransformer" have been implemented or not?
We read the paper provided in README.md and want to follow this work. However, I fail to find the SQLStatementTransformer
and SQLQueryTask
(in codes) which are described in your paper. So I wonder if these modulars have not been implemented?
Those are components of the database (Hyrise), not of the SQL parser. The parser's job is to generate an Abstract Syntax Tree (AST) of the query. The actual execution is handled by the database.
In the new version of Hyrise, the parsed SQL result is used in the SQLPipeline.