(
self, connection, schema=None, sqlite_include_internal=False, **kw
)
| 2292 | |
| 2293 | @reflection.cache |
| 2294 | def get_table_names( |
| 2295 | self, connection, schema=None, sqlite_include_internal=False, **kw |
| 2296 | ): |
| 2297 | query = self._sqlite_main_query( |
| 2298 | "sqlite_master", "table", schema, sqlite_include_internal |
| 2299 | ) |
| 2300 | names = connection.exec_driver_sql(query).scalars().all() |
| 2301 | return names |
| 2302 | |
| 2303 | @reflection.cache |
| 2304 | def get_temp_table_names( |
nothing calls this directly
no test coverage detected