(self, index)
| 253 | return 0 |
| 254 | |
| 255 | def simulate_index(self, index): |
| 256 | #table_name = index.table() |
| 257 | statement = ( |
| 258 | "SELECT * FROM hypopg_create_index(E'{}');".format(index) |
| 259 | ) |
| 260 | result = self.execute_sql(statement) |
| 261 | |
| 262 | return result |
| 263 | |
| 264 | def drop_simulated_index(self, oid): |
| 265 | statement = f"select * from hypopg_drop_index({oid})" |
nothing calls this directly
no test coverage detected