Skip to content

Commit

Permalink
chore: add nulls_first to visit sort keys in pandas executor
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi committed Jun 20, 2024
1 parent 784213c commit ce6b0bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/pandas/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def visit(cls, op: ops.Alias, arg, name):
return arg

@classmethod
def visit(cls, op: ops.SortKey, expr, ascending):
def visit(cls, op: ops.SortKey, expr, ascending, nulls_first):
return expr

@classmethod
Expand Down

0 comments on commit ce6b0bf

Please sign in to comment.