r"""Return a list of temporary view names for the current bind. This method is unsupported by most dialects; currently only PostgreSQL and SQLite implements it. :param \**kw: Additional keyword argument to pass to the dialect specific implementation. See the docume
(self, **kw: Any)
| 646 | ) |
| 647 | |
| 648 | def get_temp_view_names(self, **kw: Any) -> List[str]: |
| 649 | r"""Return a list of temporary view names for the current bind. |
| 650 | |
| 651 | This method is unsupported by most dialects; currently |
| 652 | only PostgreSQL and SQLite implements it. |
| 653 | |
| 654 | :param \**kw: Additional keyword argument to pass to the dialect |
| 655 | specific implementation. See the documentation of the dialect |
| 656 | in use for more information. |
| 657 | |
| 658 | """ |
| 659 | with self._operation_context() as conn: |
| 660 | return self.dialect.get_temp_view_names( |
| 661 | conn, info_cache=self.info_cache, **kw |
| 662 | ) |
| 663 | |
| 664 | def get_table_options( |
| 665 | self, table_name: str, schema: Optional[str] = None, **kw: Any |
nothing calls this directly
no test coverage detected