(self)
| 5344 | bind._run_ddl_visitor(ddl.SchemaDropper, self, checkfirst=checkfirst) |
| 5345 | |
| 5346 | def __repr__(self) -> str: |
| 5347 | exprs: _typing_Sequence[Any] # noqa: F842 |
| 5348 | |
| 5349 | return "Index(%s)" % ( |
| 5350 | ", ".join( |
| 5351 | [repr(self.name)] |
| 5352 | + [repr(e) for e in self.expressions] |
| 5353 | + (self.unique and ["unique=True"] or []) |
| 5354 | ) |
| 5355 | ) |
| 5356 | |
| 5357 | |
| 5358 | _NamingSchemaCallable = Union[ |