(self, oid)
| 262 | return result |
| 263 | |
| 264 | def drop_simulated_index(self, oid): |
| 265 | statement = f"select * from hypopg_drop_index({oid})" |
| 266 | result = self.execute_sql(statement) |
| 267 | |
| 268 | assert result[0] is True, f"Could not drop simulated index with oid = {oid}." |
nothing calls this directly
no test coverage detected