code cleanup

This commit is contained in:
Sergey Olontsev 2025-07-06 09:28:37 +01:00
parent 9b1612fe5b
commit 60acdc5bb6
No known key found for this signature in database
GPG key ID: 67DDC06CA52E8A39

View file

@ -2181,7 +2181,7 @@ fn parse_pg_regex_match_ops() {
];
for (str_op, op) in pg_regex_match_ops {
// Basic binary operation usage
// Basic binary operator usage
let select = pg().verified_only_select(&format!("SELECT 'abc' {str_op} '^a'"));
assert_eq!(
SelectItem::UnnamedExpr(Expr::BinaryOp {
@ -2223,7 +2223,7 @@ fn parse_pg_like_match_ops() {
];
for (str_op, op) in pg_like_match_ops {
// Basic binary operation usage
// Basic binary operator usage
let select = pg().verified_only_select(&format!("SELECT 'abc' {str_op} 'a_c%'"));
assert_eq!(
SelectItem::UnnamedExpr(Expr::BinaryOp {