feat: support PGOverlap operator (#912)

This commit is contained in:
Igor Izvekov 2023-07-06 16:27:18 +03:00 committed by GitHub
parent 20ac38b4da
commit a50671d95d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 2 deletions

View file

@ -1613,6 +1613,7 @@ fn parse_pg_binary_ops() {
("^", BinaryOperator::PGExp, pg()),
(">>", BinaryOperator::PGBitwiseShiftRight, pg_and_generic()),
("<<", BinaryOperator::PGBitwiseShiftLeft, pg_and_generic()),
("&&", BinaryOperator::PGOverlap, pg()),
];
for (str_op, op, dialects) in binary_ops {