I have connected to my company's PostgreSQL database using the RPostgarSQL package. I would like to list tables that match certain naming patterns using the dbListTable() function. In native PostgreSQL environment, I can just use psql command
\dt *name_pattern*
to find tables. How can I do the same thing using RPostgreSQL::dbListTable()?