(self, connection, table_name, schema=None, **kw)
| 186 | |
| 187 | @reflection.cache |
| 188 | def get_indexes(self, connection, table_name, schema=None, **kw): |
| 189 | data = self.get_multi_indexes( |
| 190 | connection, |
| 191 | schema=schema, |
| 192 | filter_names=[table_name], |
| 193 | scope=ObjectScope.ANY, |
| 194 | kind=ObjectKind.ANY, |
| 195 | **kw, |
| 196 | ) |
| 197 | return self._value_or_raise(data, table_name, schema) |
| 198 | |
| 199 | @reflection.cache |
| 200 | def get_unique_constraints( |
no test coverage detected