You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/03/11 03:25:25 UTC

[GitHub] [arrow-datafusion] Ted-Jiang opened a new issue #1984: [Ballista] datafusion-cli with ballista not support show tables and show columns

Ted-Jiang opened a new issue #1984:
URL: https://github.com/apache/arrow-datafusion/issues/1984


   **Is your feature request related to a problem or challenge? Please describe what you are trying to do.**
   datafusion-cli  with ballista not support show tables and show columns 
   ```
   RUST_LOG=INFO cargo run  --bin datafusion-cli --features=ballista  -- --host localhost --port 50050
   
   create external table table1 stored as PARQUET location "/Users/yangjiang/ebay/kylin-native/examples/test_case_data/xxxx";
   0 rows in set. Query took 0.006 seconds.
   
   ❯ \d table1;  🤔 Invalid statement: sql parser error: Expected an SQL statement, found: \
   ^C
   ❯ show tables;
   Plan("SHOW TABLES is not supported unless information_schema is enabled")
   ❯
   
   
   ```
   
   **Describe the solution you'd like**
   A clear and concise description of what you want to happen.
   
   **Describe alternatives you've considered**
   A clear and concise description of any alternative solutions or features you've considered.
   
   **Additional context**
   Add any other context or screenshots about the feature request here.
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] liukun4515 commented on issue #1984: [Ballista] datafusion-cli with ballista not support show tables and show columns

Posted by GitBox <gi...@apache.org>.
liukun4515 commented on issue #1984:
URL: https://github.com/apache/arrow-datafusion/issues/1984#issuecomment-1065084611


   Have you tried to enable the `information_schema` from the error message "Plan("SHOW TABLES is not supported unless information_schema is enabled")"
   @Ted-Jiang 


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] gaojun2048 edited a comment on issue #1984: [Ballista] datafusion-cli with ballista not support show tables and show columns

Posted by GitBox <gi...@apache.org>.
gaojun2048 edited a comment on issue #1984:
URL: https://github.com/apache/arrow-datafusion/issues/1984#issuecomment-1086619938


   In this pr: https://github.com/apache/arrow-datafusion/pull/1593 I added `show tables` and `show columns` in ballista context.  I think we can add a param named `with_information_schema` which type is `bool` in datafusion-cli.  And create a BallistaContext with information schema when the value of `with_information_schema` is `true`.
   I can finish it in these days.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] liukun4515 commented on issue #1984: [Ballista] datafusion-cli with ballista not support show tables and show columns

Posted by GitBox <gi...@apache.org>.
liukun4515 commented on issue #1984:
URL: https://github.com/apache/arrow-datafusion/issues/1984#issuecomment-1065085787


   Maybe I can help you to check this issue if I'm free on the weekend.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] gaojun2048 commented on issue #1984: [Ballista] datafusion-cli with ballista not support show tables and show columns

Posted by GitBox <gi...@apache.org>.
gaojun2048 commented on issue #1984:
URL: https://github.com/apache/arrow-datafusion/issues/1984#issuecomment-1086619938


   In this pr: https://github.com/apache/arrow-datafusion/pull/1593 I added `show tables` and `show columns` in ballista context.  I think we can add a param named `with_information_schema` which type is `bool`. 
   I can finish it in these days.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org