viirya commented on code in PR #7318: URL: https://github.com/apache/arrow-datafusion/pull/7318#discussion_r1297457655
########## datafusion/sql/src/lib.rs: ########## @@ -15,8 +15,18 @@ // specific language governing permissions and limitations // under the License. -//! This module provides a SQL parser that translates SQL queries into an abstract syntax -//! tree (AST), and a SQL query planner that creates a logical plan from the AST. +//! This module provides: +//! +//! 1. A SQL parser, [`DFParser`], that translates SQL query text into +//! an abstract syntax tree (AST), [`Statement`]. +//! +//! 2. A SQL query planner [`SqlToRel`] that creates [`LogicalPlan`]s +//! from `Statements`. Review Comment: ```suggestion //! 2. A SQL query planner [`SqlToRel`] that creates [`LogicalPlan`]s //! from [`Statement`]s. ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
