Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

does hyper support reading multiple files from the same folders #88

Open
djouallah opened this issue Mar 20, 2023 · 1 comment
Open

Comments

@djouallah
Copy link

is this supposed to work ?

create table "region" as (select * from ('./region/*.parquet') );

@vogelsgesang
Copy link
Contributor

no, globs don't current work.

You can use array syntax instead

create table "region" as select * from external(array['./region/1.parquet', './region/2.parquet']);

However that requires an explicit list of file names. glob syntax is currently not natively supported in Hyper, but you can combine it with Python and use Python to create that list

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants