a-agmon opened a new pull request, #16332:
URL: https://github.com/apache/datafusion/pull/16332
Partly closes #16303
Introduces glob() table function that allows running queries on multiple
files, like:
```
SELECT id FROM glob('s3://tests/data/file-a*.csv');
SELECT id FROM glob('s3://tests/*/*.csv');
```
note that the latter statement include 2 glob layers (2 wildcards) that work
on only if you enable
```
SET datafusion.execution.listing_table_ignore_subdirectory = false;
```
Integration tests were added to test
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]