Skip to content

Commit

Permalink
feat(duckdb): implement bitwise xor
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored and kszucs committed Sep 5, 2022
1 parent 348cd08 commit ca3abed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ibis/backends/duckdb/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ def _struct_column(t, expr):
ops.StructColumn: _struct_column,
ops.ArgMin: reduction(sa.func.min_by),
ops.ArgMax: reduction(sa.func.max_by),
ops.BitwiseXor: fixed_arity(sa.func.xor, 2),
}
)

Expand Down

0 comments on commit ca3abed

Please sign in to comment.