(self, index: Index)
| 7221 | return text + self.preparer.format_table(drop.element) |
| 7222 | |
| 7223 | def _verify_index_table(self, index: Index) -> None: |
| 7224 | if index.table is None: |
| 7225 | raise exc.CompileError( |
| 7226 | "Index '%s' is not associated with any table." % index.name |
| 7227 | ) |
| 7228 | |
| 7229 | def visit_create_index( |
| 7230 | self, create, include_schema=False, include_table_schema=True, **kw |
no outgoing calls
no test coverage detected