(self)
| 22 | self.env.cmd('flushall') |
| 23 | |
| 24 | def build_indices(self): |
| 25 | redis_graph.query("CREATE INDEX ON :person(age)") |
| 26 | redis_graph.query("CREATE INDEX ON :country(name)") |
| 27 | wait_for_indices_to_sync(redis_graph) |
| 28 | |
| 29 | # Validate that Cartesian products using index and label scans succeed |
| 30 | def test01_cartesian_product_mixed_scans(self): |
no test coverage detected