You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Working through pandas integration the ADBC driver would commonly emit something like CREATE TABLE test (index, A, B, C, D) and the driver would return a syntax error. index is a reserved sqlite keyword and when removing that column there is no issue; think the driver should quote these values on table create
Working through pandas integration the ADBC driver would commonly emit something like
CREATE TABLE test (index, A, B, C, D)
and the driver would return a syntax error.index
is a reserved sqlite keyword and when removing that column there is no issue; think the driver should quote these values on table createhttps://www.sqlite.org/lang_keywords.html
The text was updated successfully, but these errors were encountered: