Skip to content

Commit ab62557

Browse files
use ctx.from_arrow rather than from_arrow_table
1 parent 124654c commit ab62557

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/bigframes/bigframes/session/substrait_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def consume(self, plan_proto: bytes, tables: dict[str, pa.Table]) -> pa.Table:
6666
ctx = datafusion.SessionContext()
6767

6868
for name, table in tables.items():
69-
df = ctx.from_arrow_table(table)
69+
df = ctx.from_arrow(table)
7070
ctx.register_table(name, df)
7171

7272
import datafusion.substrait

0 commit comments

Comments
 (0)