BlakeOrth opened a new issue, #17212: URL: https://github.com/apache/datafusion/issues/17212
### Describe the bug If a path to an external table contains a `.` in the final path element (i.e. folders are named with `.` delimited versioning) tables created via the `ListingTableFactory` (leveraged by `datafusion-cli`) fail to read the table data. ### To Reproduce ```sql DataFusion CLI v49.0.1 > CREATE EXTERNAL TABLE versioned_example(a string) STORED AS parquet LOCATION '/tmp/tables/table.v1/'; 0 row(s) fetched. Elapsed 0.004 seconds. > INSERT INTO versioned_example VALUES ('data'); +-------+ | count | +-------+ | 1 | +-------+ 1 row(s) fetched. Elapsed 0.007 seconds. > describe versioned_example; +-------------+-----------+-------------+ | column_name | data_type | is_nullable | +-------------+-----------+-------------+ | a | Utf8View | YES | +-------------+-----------+-------------+ 1 row(s) fetched. Elapsed 0.002 seconds. > select * from versioned_example; +---+ | a | +---+ +---+ 0 row(s) fetched. Elapsed 0.002 seconds. > CREATE EXTERNAL TABLE versioned_example_readback STORED AS parquet LOCATION '/tmp/tables/table.v1/'; 0 row(s) fetched. Elapsed 0.002 seconds. > describe versioned_example_readback; +-------------+-----------+-------------+ | column_name | data_type | is_nullable | +-------------+-----------+-------------+ +-------------+-----------+-------------+ 0 row(s) fetched. Elapsed 0.001 seconds. > select * from versioned_example_readback; 0 row(s) fetched. Elapsed 0.002 seconds. ``` ### Expected behavior Tables with `.` in their final path element should act like any other table and successfully read the data under the directory. ### Additional context apache/datafusion/pull/17050 fixes this issue -- 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-unsubscr...@datafusion.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org