e.g. `dbGetQuery()` doesn't complain about extra arguments. I guess this affects all backends. ``` r library(DBI) con <- dbConnect(RSQLite::SQLite(), ":memory:") DBI::dbGetQuery( con, "SELECT 1", extra_arg = 1 ) #> 1 #> 1 1 ``` <sup>Created on 2023-04-25 with [reprex v2.0.2](https://reprex.tidyverse.org)</sup>