This is an automated email from the ASF dual-hosted git repository.

timsaucer pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ray.git


The following commit(s) were added to refs/heads/main by this push:
     new 810592c  Fix partitions as `list[list[pyarrow.RecordBatch]]` (#38)
810592c is described below

commit 810592cb87ec9a66c899fb56599d692196dc4e55
Author: Austin Liu <[email protected]>
AuthorDate: Tue Oct 22 17:23:48 2024 +0800

    Fix partitions as `list[list[pyarrow.RecordBatch]]` (#38)
    
    Signed-off-by: Austin Liu <[email protected]>
---
 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 @@ df = (
 )
 
 ray_results = ray_ctx.plan(df.execution_plan())
-df_ctx.create_dataframe([ray_results]).show()
+df_ctx.create_dataframe([[ray_results]]).show()


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to