Return a list of table names for ``schema``. This is an internal dialect method. Applications should use :meth:`_engine.Inspector.get_table_names`.
(
self, connection: Connection, schema: Optional[str] = None, **kw: Any
)
| 1472 | raise NotImplementedError() |
| 1473 | |
| 1474 | def get_table_names( |
| 1475 | self, connection: Connection, schema: Optional[str] = None, **kw: Any |
| 1476 | ) -> List[str]: |
| 1477 | """Return a list of table names for ``schema``. |
| 1478 | |
| 1479 | This is an internal dialect method. Applications should use |
| 1480 | :meth:`_engine.Inspector.get_table_names`. |
| 1481 | |
| 1482 | """ |
| 1483 | |
| 1484 | raise NotImplementedError() |
| 1485 | |
| 1486 | def get_temp_table_names( |
| 1487 | self, connection: Connection, schema: Optional[str] = None, **kw: Any |
no outgoing calls