From eee882a0d3a7e2327dcb661e3f83babd25b1d3cb Mon Sep 17 00:00:00 2001 From: Austin Liu Date: Tue, 22 Oct 2024 14:29:09 +0800 Subject: [PATCH] Fix partitions as `list[list[pyarrow.RecordBatch]]` Signed-off-by: Austin Liu --- examples/tips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tips.py b/examples/tips.py index 67ac64e..3a2fa91 100644 --- a/examples/tips.py +++ b/examples/tips.py @@ -52,4 +52,4 @@ ) ray_results = ray_ctx.plan(df.execution_plan()) -df_ctx.create_dataframe([ray_results]).show() +df_ctx.create_dataframe([[ray_results]]).show()