We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7b133a commit a7de3c8Copy full SHA for a7de3c8
src/ast/operator.rs
@@ -86,6 +86,8 @@ pub enum BinaryOperator {
86
PGRegexIMatch,
87
PGRegexNotMatch,
88
PGRegexNotIMatch,
89
+ JsonColumnPath,
90
+ JsonInlinePath,
91
}
92
93
impl fmt::Display for BinaryOperator {
@@ -121,6 +123,8 @@ impl fmt::Display for BinaryOperator {
121
123
BinaryOperator::PGRegexIMatch => "~*",
122
124
BinaryOperator::PGRegexNotMatch => "!~",
125
BinaryOperator::PGRegexNotIMatch => "!~*",
126
+ BinaryOperator::JsonColumnPath => "->",
127
+ BinaryOperator::JsonInlinePath => "->>",
128
})
129
130
0 commit comments