(pdf)
| 202 | |
| 203 | @xfail_gpu("https://github.com/rapidsai/cudf/issues/10271") |
| 204 | def test_explode_simplify(pdf): |
| 205 | pdf["z"] = 1 |
| 206 | df = from_pandas(pdf) |
| 207 | q = df.explode(column="x")["y"] |
| 208 | result = optimize(q, fuse=False) |
| 209 | expected = optimize(df[["x", "y"]], fuse=False).explode(column="x")["y"] |
| 210 | assert result._name == expected._name |
| 211 | |
| 212 | |
| 213 | def test_meta_divisions_name(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…