Skip to content

Commit 9b1612f

Browse files
committed
code cleanup
1 parent 29ea210 commit 9b1612f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/sqlparser_postgres.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2189,7 +2189,7 @@ fn parse_pg_regex_match_ops() {
21892189
op: op.clone(),
21902190
right: Box::new(Expr::Value(single_quoted_string("^a").with_empty_span(),)),
21912191
}),
2192-
select.projection[0],
2192+
select.projection[0]
21932193
);
21942194

21952195
// Binary operator with ANY operator
@@ -2208,7 +2208,7 @@ fn parse_pg_regex_match_ops() {
22082208
})),
22092209
is_some: false,
22102210
}),
2211-
select.projection[0],
2211+
select.projection[0]
22122212
)
22132213
}
22142214
}
@@ -2231,7 +2231,7 @@ fn parse_pg_like_match_ops() {
22312231
op: op.clone(),
22322232
right: Box::new(Expr::Value(single_quoted_string("a_c%").with_empty_span(),)),
22332233
}),
2234-
select.projection[0],
2234+
select.projection[0]
22352235
);
22362236

22372237
// Binary operator with ALL operator
@@ -2246,7 +2246,7 @@ fn parse_pg_like_match_ops() {
22462246
named: true,
22472247
})),
22482248
}),
2249-
select.projection[0],
2249+
select.projection[0]
22502250
)
22512251
}
22522252
}

0 commit comments

Comments
 (0)