houqp edited a comment on issue #671:
URL: 
https://github.com/apache/arrow-datafusion/issues/671#issuecomment-873636399


   This should be fixed by https://github.com/apache/arrow-datafusion/pull/605
   
   ```
   >  CREATE EXTERNAL TABLE test(c9 int)
   STORED AS CSV
   LOCATION '/tmp/foo.csv';
   0 rows in set. Query took 0.000 seconds.
   > SELECT
     t1.c9, t2.c9
   FROM test t1
   INNER JOIN test t2
   ON t1.c9 = t2.c9;
   +----+----+
   | c9 | c9 |
   +----+----+
   | 4  | 4  |
   | 3  | 3  |
   | 1  | 1  |
   | 2  | 2  |
   +----+----+
   4 rows in set. Query took 0.021 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