Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ibis/backends/duckdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@ def to_pyarrow(

table = self._to_duckdb_relation(
expr, params=params, limit=limit, **kwargs
).arrow()
).to_arrow_table()
return expr.__pyarrow_result__(table, data_mapper=DuckDBPyArrowData)

def execute(
Expand All @@ -1402,7 +1402,7 @@ def execute(
from ibis.backends.duckdb.converter import DuckDBPandasData

rel = self._to_duckdb_relation(expr, params=params, limit=limit, **kwargs)
table = rel.arrow()
table = rel.to_arrow_table()

df = pd.DataFrame(
{
Expand Down
Loading