Skip to content

Commit

Permalink
fix(flink): fix the pandas conversion in execute
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored and jcrist committed Aug 23, 2023
1 parent 5dcc0db commit 2f6564f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/flink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def execute(self, expr: ir.Expr, **kwargs: Any) -> Any:
table_expr = expr.as_table()
sql = self.compile(table_expr, **kwargs)
df = self._table_env.sql_query(sql).to_pandas()
return table_expr.__pandas_result__(df)
return expr.__pandas_result__(df)

def create_table(
self,
Expand Down

0 comments on commit 2f6564f

Please sign in to comment.