Return a dictionary of options specified when ``table_name`` was created. This is an internal dialect method. Applications should use :meth:`_engine.Inspector.get_table_options`.
(
self,
connection: Connection,
table_name: str,
schema: Optional[str] = None,
**kw: Any,
)
| 1760 | raise NotImplementedError() |
| 1761 | |
| 1762 | def get_table_options( |
| 1763 | self, |
| 1764 | connection: Connection, |
| 1765 | table_name: str, |
| 1766 | schema: Optional[str] = None, |
| 1767 | **kw: Any, |
| 1768 | ) -> Dict[str, Any]: |
| 1769 | """Return a dictionary of options specified when ``table_name`` |
| 1770 | was created. |
| 1771 | |
| 1772 | This is an internal dialect method. Applications should use |
| 1773 | :meth:`_engine.Inspector.get_table_options`. |
| 1774 | """ |
| 1775 | raise NotImplementedError() |
| 1776 | |
| 1777 | def get_multi_table_options( |
| 1778 | self, |
no outgoing calls