dbQuoteIdentifier()
ignores names given to Id()
, uses arguments in order
#383
Labels
dbQuoteIdentifier()
ignores names given to Id()
, uses arguments in order
#383
See the reprex below.
dbQuoteIdentifier()
is called twice with the same table data. All that changes is the order in which theId()
arguments were given. Conceptually, this should be irrelevant and return the same identifier, but it's changed. ClearlydbQuoteIdentifier()
is ignoring the names given toId()
and simply using the order in which they are defined.Created on 2022-03-03 by the reprex package (v2.0.1)
This is especially odd given that
Id()
demands that all its arguments be named. Given thatId()
is likely only ever used as an argument todbQuoteIdentifier()
(even if via other functions which eventually call it), it seems odd that the user is forced to define names which aren't actually used.The text was updated successfully, but these errors were encountered: