We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 638dc46 commit 0e57822Copy full SHA for 0e57822
1 file changed
datafusion/sql/src/expr/binary_op.rs
@@ -68,6 +68,7 @@ impl<S: ContextProvider> SqlToRel<'_, S> {
68
BinaryOperator::Question => Ok(Operator::Question),
69
BinaryOperator::QuestionAnd => Ok(Operator::QuestionAnd),
70
BinaryOperator::QuestionPipe => Ok(Operator::QuestionPipe),
71
+ BinaryOperator::PGCustomBinaryOperator(custom) if custom == ["pg_catalog", "~"] => Ok(Operator::RegexMatch),
72
_ => not_impl_err!("Unsupported binary operator: {:?}", op),
73
}
74
0 commit comments