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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to