alamb commented on issue #91:
URL: https://github.com/apache/arrow-datafusion/issues/91#issuecomment-967309596


   This has been since fixed: 
   
   ```
   ❯ create external table test(c1 boolean) stored as CSV location 
'/tmp/foo.csv';
   0 rows in set. Query took 0.002 seconds.
   ❯ select count(c1), c1 from test group by c1;
   +----------------+-------+
   | COUNT(test.c1) | c1    |
   +----------------+-------+
   | 1              | false |
   +----------------+-------+
   1 row in set. Query took 0.017 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