You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
is this supposed to work ?
create table "region" as (select * from ('./region/*.parquet') );
The text was updated successfully, but these errors were encountered: