Open
Description
I'm using the RPostgres::Postgres()
driver. I can't get DBI to respect schema without using SQL. These two give different results:
dbListTables(con, Id(schema='prp049'))
dbGetQuery(con, "SELECT table_name FROM information_schema.tables WHERE table_schema='prp049'")
I don't know what I could do to make a reprex here.