(self)
| 216 | self.assertIs(statement.references_column("other", "column"), False) |
| 217 | |
| 218 | def test_references_index(self): |
| 219 | statement = Statement( |
| 220 | "", |
| 221 | reference=MockReference("", {}, {}, {("table", "index")}), |
| 222 | non_reference="", |
| 223 | ) |
| 224 | self.assertIs(statement.references_index("table", "index"), True) |
| 225 | self.assertIs(statement.references_index("other", "index"), False) |
| 226 | |
| 227 | def test_rename_table_references(self): |
| 228 | reference = MockReference("", {"table"}, {}, {}) |
nothing calls this directly
no test coverage detected