(
self,
list_queries: Optional[List[str]] = None,
**kwargs: Any,
)
| 21 | supports_statement_cache = True |
| 22 | |
| 23 | def __init__( |
| 24 | self, |
| 25 | list_queries: Optional[List[str]] = None, |
| 26 | **kwargs: Any, |
| 27 | ): |
| 28 | # We tell Shillelagh that this dialect supports just one adapter |
| 29 | super().__init__(safe=True, adapters=[ADAPTER_NAME], **kwargs) |
| 30 | |
| 31 | self.list_queries = list_queries |
| 32 | |
| 33 | def get_table_names( |
| 34 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected