The following interpolation does not seem to be supported currently: ```r sqlInterpolate(con, "select * from table where name in ?names", names = c("name1", "name2")) ``` which is supposed to be translated into ```sql select * from table where name in ('name1','name2') ```