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/12 19:17:59 UTC

[GitHub] [arrow-datafusion] alamb edited a comment on issue #82: [DataFusion] Add validation for unreferenced table in query

alamb edited a comment on issue #82:
URL: https://github.com/apache/arrow-datafusion/issues/82#issuecomment-1065946701


   I am not sure this issue is relevant anymore . Sorry for the poor ticket hygiene @jackwener 
   
   I tried the query and it works fine now
   
   ```shell
   cargo run --bin datafusion-cli
   ...
   
   DataFusion CLI v7.0.0
   ❯ create table t1 as select * from (values (11, 'a'), (22, 'b'), (33, 'c'), (44, 'd'), (77, 'e')) as sq;
   0 rows in set. Query took 0.047 seconds.
   ❯ select 1 from t1;
   +----------+
   | Int64(1) |
   +----------+
   | 1        |
   | 1        |
   | 1        |
   | 1        |
   | 1        |
   +----------+
   5 rows in set. Query took 0.008 seconds.
   
   ```


-- 
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