mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-08 01:15:00 +00:00
feat: support PGOverlap operator (#912)
This commit is contained in:
parent
20ac38b4da
commit
a50671d95d
4 changed files with 19 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue