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
Currently, for CSV files, both of these will work
SELECT * FROM read_csv('my_csv.csv'); SELECT * FROM 'my_csv.csv';
For Excel files, only this will work
SELECT * FROM read_excel('my_excel.xlsx')
If you instead run
SELECT * FROM 'my_excel.xlsx'
you get
ExecutionException: Error during planning: unable to infer how to handle file extension: xlsx
The text was updated successfully, but these errors were encountered:
Partially related: #2639 via #2602
Sorry, something went wrong.
fix: infer excel files by extension (#2655)
d9a36cd
addresses #2651
Successfully merging a pull request may close this issue.
Description
Currently, for CSV files, both of these will work
For Excel files, only this will work
If you instead run
you get
The text was updated successfully, but these errors were encountered: