Skip to content

Commit e45a176

Browse files
committed
Fix toArrow
1 parent 3128a33 commit e45a176

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

duckdb/experimental/spark/sql/dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def toArrow(self) -> "pa.Table":
6868
age: [[2,5]]
6969
name: [["Alice","Bob"]]
7070
"""
71-
return self.relation.arrow_table()
71+
return self.relation.to_arrow_table()
7272

7373
def createOrReplaceTempView(self, name: str) -> None:
7474
"""Creates or replaces a local temporary view with this :class:`DataFrame`.

0 commit comments

Comments
 (0)