MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _verify_index_table

Method _verify_index_table

lib/sqlalchemy/sql/compiler.py:7223–7227  ·  view source on GitHub ↗
(self, index: Index)

Source from the content-addressed store, hash-verified

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

Callers 6

visit_create_indexMethod · 0.95
visit_create_indexMethod · 0.80
visit_create_indexMethod · 0.80
visit_create_indexMethod · 0.80
visit_create_indexMethod · 0.80
visit_create_indexMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected