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
Still tracking down the root cause. Will update this issue
Introduced from #57
The text was updated successfully, but these errors were encountered:
Okay, I've found the issue.
In this snippet:
duckdb_gsheets/src/gsheets_read.cpp
Lines 213 to 216 in 708512c
We return early if start_index >= sheet_data.values.size(). At this point the ReadSheetBindData attributes return_types and names are empty vectors.
start_index >= sheet_data.values.size()
ReadSheetBindData
return_types
names
When the bind method eventually gets called by DuckDB it will fail this check:
https://github.com/duckdb/duckdb/blob/19864453f7d0ed095256d848b46e7b8630989bac/src/planner/binder/tableref/bind_table_function.cpp#L220-L223
The fix would be to ensure that we have established the column name and types before exiting early so DuckDB does not throw the error we've observed.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Still tracking down the root cause. Will update this issue
Introduced from #57
The text was updated successfully, but these errors were encountered: