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
the issue is that the column names we produce are different than what sqlite produces. This can lead to confusing behavior if the user tries to get the columns by name.
For the query "select count(*) from foo", we receive the query as-is:
Ref: fermyon/feedback#52
the issue is that the column names we produce are different than what sqlite produces. This can lead to confusing behavior if the user tries to get the columns by name.
For the query "select count(*) from foo", we receive the query as-is:
when it is time to
execute_query
, we produce:Somewhere in the query parsing we end up adding a space.
The text was updated successfully, but these errors were encountered: