We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have poorly named parquet files like "outputs/000016.parquet", "outputs/000017.parquet" and so I see this:
"outputs/000016.parquet", "outputs/000017.parquet"
open_dataset(files) Error: Parser Error: syntax error at or near "000001" LINE 1: CREATE OR REPLACE TEMPORARY VIEW 000001 AS SELECT * FROM parquet_scan(['..
Renaming the files makes it work e.g. "./b000001.parquet", "./b000002.parquet"
"./b000001.parquet", "./b000002.parquet"
I don't know if futzing the string is better than quoting the table name generally, but maybe quoting is also needed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have poorly named parquet files like
"outputs/000016.parquet", "outputs/000017.parquet"
and so I see this:Renaming the files makes it work e.g.
"./b000001.parquet", "./b000002.parquet"
I don't know if futzing the string is better than quoting the table name generally, but maybe quoting is also needed
The text was updated successfully, but these errors were encountered: