List the available tables on the connection
Value
A data.frame containing table names including schema (and catalog when available) in the database.
Examples
  conn <- get_connection()
  dplyr::copy_to(conn, mtcars, name = "my_test_table_1", temporary = FALSE)
  dplyr::copy_to(conn, mtcars, name = "my_test_table_2")
  get_tables(conn, pattern = "my_[th]est")
#>   schema           table
#> 1   main my_test_table_1
#> 2   temp my_test_table_2
  get_tables(conn, pattern = "my_[th]est", show_temporary = FALSE)
#>   schema           table
#> 1   main my_test_table_1
  close_connection(conn)
