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 9b1612f commit 60acdc5Copy full SHA for 60acdc5
tests/sqlparser_postgres.rs
@@ -2181,7 +2181,7 @@ fn parse_pg_regex_match_ops() {
2181
];
2182
2183
for (str_op, op) in pg_regex_match_ops {
2184
- // Basic binary operation usage
+ // Basic binary operator usage
2185
let select = pg().verified_only_select(&format!("SELECT 'abc' {str_op} '^a'"));
2186
assert_eq!(
2187
SelectItem::UnnamedExpr(Expr::BinaryOp {
@@ -2223,7 +2223,7 @@ fn parse_pg_like_match_ops() {
2223
2224
2225
for (str_op, op) in pg_like_match_ops {
2226
2227
let select = pg().verified_only_select(&format!("SELECT 'abc' {str_op} 'a_c%'"));
2228
2229
0 commit comments