Replace proof_of_sql_parser::intermediate_ast::OrderBy
with sqlparser::ast::OrderByExpr
in the proof-of-sql
crate
#354
Labels
refactor
Code cleanup or reorganization
Background and Motivation
This issue is a subtask in #235. In short since we plan to add more SQL features we plan to switch to the
sqlparser
crate which is a feature-rich,no_std
-compatible parser used by DataFusion, which is part of the Arrow ecosystem.Right now we already have some code that can convert intermediate AST from
proof-of-sql-parser
we use to sqlparser AST. Now we need to systematically replace instances ofproof-of-sql-parser
constructs with their corresponding sqlparser ones.Changes Required
proof_of_sql_parser::intermediate_ast::OrderBy
withsqlparser::ast::OrderByExpr
in theproof-of-sql
crate.The text was updated successfully, but these errors were encountered: