Skip to content
New issue

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

Feature: Inference for Excel file extensions #2651

Closed
talagluck opened this issue Feb 15, 2024 · 1 comment · Fixed by #2655
Closed

Feature: Inference for Excel file extensions #2651

talagluck opened this issue Feb 15, 2024 · 1 comment · Fixed by #2655
Labels
feat New feature or request

Comments

@talagluck
Copy link
Contributor

Description

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
@talagluck talagluck added the feat New feature or request label Feb 15, 2024
@greyscaled
Copy link
Contributor

Partially related: #2639 via #2602

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants