[GitHub] [arrow-datafusion] andygrove commented on a diff in pull request #2642: Implement DESCRIBE

Sun, 29 May 2022 12:36:45 -0700


andygrove commented on code in PR #2642:
URL: https://github.com/apache/arrow-datafusion/pull/2642#discussion_r884315275


##########
datafusion/sql/src/planner.rs:
##########
@@ -139,6 +139,7 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
         match statement {
             DFStatement::CreateExternalTable(s) => 
self.external_table_to_plan(s),
             DFStatement::Statement(s) => self.sql_statement_to_plan(*s),
+            DFStatement::DescribeTable(s) => self.decrible_table_to_plan(s),

Review Comment:
   ```suggestion
               DFStatement::DescribeTable(s) => self.describe_table_to_plan(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]

Reply via email to