(self, obj: Visitable, **kwargs: Any)
| 945 | raise NotImplementedError() |
| 946 | |
| 947 | def process(self, obj: Visitable, **kwargs: Any) -> str: |
| 948 | return obj._compiler_dispatch(self, **kwargs) |
| 949 | |
| 950 | def __str__(self) -> str: |
| 951 | """Return the string text of the generated SQL or DDL.""" |
no test coverage detected