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
Originally posted by eitsupi January 13, 2023
DuckDB can accept the path to a Parquet file as the table name.
For example, FROM 'test/*.parquet'.
Is there any way to use this in PRQL? https://duckdb.org/docs/data/parquet.html
It seems that s-string cannot be used for this purpose.
Discussed in #1493
Originally posted by eitsupi January 13, 2023
DuckDB can accept the path to a Parquet file as the table name.
For example,
FROM 'test/*.parquet'
.Is there any way to use this in PRQL?
https://duckdb.org/docs/data/parquet.html
It seems that s-string cannot be used for this purpose.
I think this should™ be possible with:
but unfortunately this returns:
Maybe we need to give it a namespace, and so we should require:
(currently this fails with the same error)
And it should also be possible with an s-string:
though we currently require
SELECT
here:Instead, in
from
, we can take a table name without aSELECT
?For those who want to use this in the meantime, currently this works:
The text was updated successfully, but these errors were encountered: