alamb commented on issue #1488: URL: https://github.com/apache/arrow-datafusion/issues/1488#issuecomment-1758512095
I downloaded https://matthewmturner-oss.s3.amazonaws.com/public/db-benchmark/J1_1e7_NA_0_0.csv and ran this locally: ``` datafusion-cli ❯ CREATE EXTERNAL TABLE x STORED AS CSV WITH HEADER ROW LOCATION "J1_1e7_NA_0_0.csv"; 0 rows in set. Query took 0.026 seconds. ❯ SHOW COLUMNS FROM x; +---------------+--------------+------------+-------------+-----------+-------------+ | table_catalog | table_schema | table_name | column_name | data_type | is_nullable | +---------------+--------------+------------+-------------+-----------+-------------+ | datafusion | public | x | id1 | Int64 | YES | | datafusion | public | x | id2 | Int64 | YES | | datafusion | public | x | id3 | Int64 | YES | | datafusion | public | x | id4 | Utf8 | YES | | datafusion | public | x | id5 | Utf8 | YES | | datafusion | public | x | id6 | Utf8 | YES | | datafusion | public | x | v1 | Float64 | YES | +---------------+--------------+------------+-------------+-----------+-------------+ 7 rows in set. Query took 0.032 seconds. ``` Given we have ``` | datafusion | public | x | v1 | Float64 | YES | ``` I think this issue is now done! -- 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]
