Skip to content

Commit 60acdc5

Browse files
committed
code cleanup
1 parent 9b1612f commit 60acdc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sqlparser_postgres.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2181,7 +2181,7 @@ fn parse_pg_regex_match_ops() {
21812181
];
21822182

21832183
for (str_op, op) in pg_regex_match_ops {
2184-
// Basic binary operation usage
2184+
// Basic binary operator usage
21852185
let select = pg().verified_only_select(&format!("SELECT 'abc' {str_op} '^a'"));
21862186
assert_eq!(
21872187
SelectItem::UnnamedExpr(Expr::BinaryOp {
@@ -2223,7 +2223,7 @@ fn parse_pg_like_match_ops() {
22232223
];
22242224

22252225
for (str_op, op) in pg_like_match_ops {
2226-
// Basic binary operation usage
2226+
// Basic binary operator usage
22272227
let select = pg().verified_only_select(&format!("SELECT 'abc' {str_op} 'a_c%'"));
22282228
assert_eq!(
22292229
SelectItem::UnnamedExpr(Expr::BinaryOp {

0 commit comments

Comments
 (0)