-
Notifications
You must be signed in to change notification settings - Fork 42
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
CREATE EXTERNAL TABLE
support for excel
#2644
Comments
Do I have it correct that we would start with |
@tychoish Can i try contributing to this? Thanks, |
@hemanth94 this would be great for you! I cannot imagine that there'll be anything unusual. the |
closes #2644, summary of changes: - implements the `create external table excel <options>` sql command by adding a "streaming table" interface that maps excel rows/columns into a `RecordBatch`. this will likely be superseded with a followup after the `TableProvider` is implemented for (#2645) to allow querying on tables and it's missing support for streaming multiple sheets from a worksheet, it's also not super optimal quite yet, but happy to iterate on it on this pr or a followup. --------- Signed-off-by: Haile Lagi <52631736+hailelagi@users.noreply.github.com> Co-authored-by: Sam Kleinman <sam@glaredb.com> Co-authored-by: universalmind303 <cory.grinstead@gmail.com>
Currently Excel file reading is only available as a table function, but we could support
CREATE EXTERNAL TABLE
from excel files as we do for other formats.The code to do this is similar to the code for the other formats and there's nothing that is special about excel files, it's just a matter of hooking it all up and writing a few tests.
The text was updated successfully, but these errors were encountered: