Skip to content

Commit c7f47f1

Browse files
committed
update docstring
1 parent bb888f4 commit c7f47f1

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

python/datafusion/context.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,13 +1197,11 @@ def execute_logical_plan(self, plan: LogicalPlan) -> DataFrame:
11971197
>>> plan = df.logical_plan()
11981198
>>> df2 = ctx.execute_logical_plan(plan)
11991199
>>> df2.collect()[0].column(0)
1200-
<pyarrow.lib.ChunkedArray object at ...>
1200+
<pyarrow.lib.Int64Array object at ...>
12011201
[
1202-
[
1203-
1,
1204-
2,
1205-
3
1206-
]
1202+
1,
1203+
2,
1204+
3
12071205
]
12081206
"""
12091207
return DataFrame(self.ctx.execute_logical_plan(plan._raw_plan))

0 commit comments

Comments
 (0)