Skip to content

Commit

Permalink
Add BitwiseXor in function from_proto_binary_op (apache#3496)
Browse files Browse the repository at this point in the history
  • Loading branch information
askoa authored Sep 15, 2022
1 parent 84bee89 commit 6ffda68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions datafusion/proto/src/from_proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1536,6 +1536,7 @@ pub fn from_proto_binary_op(op: &str) -> Result<Operator, Error> {
"IsNotDistinctFrom" => Ok(Operator::IsNotDistinctFrom),
"BitwiseAnd" => Ok(Operator::BitwiseAnd),
"BitwiseOr" => Ok(Operator::BitwiseOr),
"BitwiseXor" => Ok(Operator::BitwiseXor),
"BitwiseShiftLeft" => Ok(Operator::BitwiseShiftLeft),
"BitwiseShiftRight" => Ok(Operator::BitwiseShiftRight),
"RegexIMatch" => Ok(Operator::RegexIMatch),
Expand Down
1 change: 1 addition & 0 deletions datafusion/proto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,7 @@ mod roundtrip_tests {
test(Operator::BitwiseShiftLeft);
test(Operator::BitwiseAnd);
test(Operator::BitwiseOr);
test(Operator::BitwiseXor);
test(Operator::IsDistinctFrom);
test(Operator::IsNotDistinctFrom);
test(Operator::And);
Expand Down

0 comments on commit 6ffda68

Please sign in to comment.