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
which expects to be doing dbUnquoteIdentifier(con, <Id>) but was actually doing dbUnquoteIdentifier(con, <char>).
It looks to me like we could make the failure more informative by checking that dbUnquoteIdentifier() returned list(<Id>) up front, does that make sense?
The text was updated successfully, but these errors were encountered:
DBItest/R/spec-sql-unquote-identifier.R
Line 23 in f19fb4d
We had a mistake where
dbUnquoteIdentifier(con, <SQL>)
returnedlist(<char>)
instead oflist(<Id>)
, as documented in?dbUnquoteIdentifier
:https://dbi.r-dbi.org/reference/dbUnquoteIdentifier.html
This caused a more obscure/hard-to-debug error a bit later in the test:
which expects to be doing
dbUnquoteIdentifier(con, <Id>)
but was actually doingdbUnquoteIdentifier(con, <char>)
.It looks to me like we could make the failure more informative by checking that
dbUnquoteIdentifier()
returnedlist(<Id>)
up front, does that make sense?The text was updated successfully, but these errors were encountered: