()
| 188 | |
| 189 | @xfail_gpu("https://github.com/rapidsai/cudf/issues/10271") |
| 190 | def test_explode(): |
| 191 | with dask.config.set({"dataframe.convert-string": False}): |
| 192 | pdf = pd.DataFrame({"a": [[1, 2], [3, 4]]}) |
| 193 | df = from_pandas(pdf) |
| 194 | assert_eq(pdf.explode(column="a"), df.explode(column="a")) |
| 195 | assert_eq(pdf.a.explode(), df.a.explode()) |
| 196 | |
| 197 | |
| 198 | @xfail_gpu("https://github.com/rapidsai/cudf/issues/10271") |
nothing calls this directly
no test coverage detected