(pdf)
| 197 | |
| 198 | @xfail_gpu("https://github.com/rapidsai/cudf/issues/10271") |
| 199 | def test_explode_simplify(pdf): |
| 200 | pdf["z"] = 1 |
| 201 | df = from_pandas(pdf) |
| 202 | q = df.explode(column="x")["y"] |
| 203 | result = optimize(q, fuse=False) |
| 204 | expected = optimize(df[["x", "y"]], fuse=False).explode(column="x")["y"] |
| 205 | assert result._name == expected._name |
| 206 | |
| 207 | |
| 208 | def test_meta_divisions_name(): |
nothing calls this directly
no test coverage detected