mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-09 18:04:59 +00:00
Add support for PostgreSQL ^@
starts-with operator (#1091)
This commit is contained in:
parent
a71b3f5e82
commit
7cb1654d81
4 changed files with 26 additions and 8 deletions
|
@ -1728,6 +1728,7 @@ fn parse_pg_binary_ops() {
|
|||
(">>", BinaryOperator::PGBitwiseShiftRight, pg_and_generic()),
|
||||
("<<", BinaryOperator::PGBitwiseShiftLeft, pg_and_generic()),
|
||||
("&&", BinaryOperator::PGOverlap, pg()),
|
||||
("^@", BinaryOperator::PGStartsWith, pg()),
|
||||
];
|
||||
|
||||
for (str_op, op, dialects) in binary_ops {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue