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
There is additional usage with httpfs that would handy to support as well, but the syntax adds the keyword table and then the filename is quoted. Perhaps this should be a parameter like remote => true that indicates the parameter is a remote file. https://duckdb.org/docs/guides/meta/describe.html#describing-remote-tables
This syntax does not work without adding the table keyword.
D describe 'https://datasets.clickhouse.com/hits_compatible/hits.parquet';
Parser Error: syntax error at or near "'https://datasets.clickhouse.com/hits_compatible/hits.parquet'"
LINE 1: describe 'https://datasets.clickhouse.com/hits_c...
^
The text was updated successfully, but these errors were encountered:
The shape of the result of a DESCRIBE call is constant, so hopefully we can avoid the
AS ...
syntax for this function.Some example usage in DuckDB:
There is additional usage with httpfs that would handy to support as well, but the syntax adds the keyword
table
and then the filename is quoted. Perhaps this should be a parameter likeremote => true
that indicates the parameter is a remote file.https://duckdb.org/docs/guides/meta/describe.html#describing-remote-tables
This syntax does not work without adding the
table
keyword.The text was updated successfully, but these errors were encountered: