@@ -1731,7 +1731,7 @@ fn parse_json_ops_without_colon() {
17311731 ];
17321732
17331733 for (str_op, op, dialects) in binary_ops {
1734- let select = dialects.verified_only_select(&format!("SELECT a {} b", & str_op));
1734+ let select = dialects.verified_only_select(&format!("SELECT a {} b", str_op));
17351735 assert_eq!(
17361736 SelectItem::UnnamedExpr(Expr::BinaryOp {
17371737 left: Box::new(Expr::Identifier(Ident::new("a"))),
@@ -2441,7 +2441,7 @@ fn parse_bitwise_ops() {
24412441 ];
24422442
24432443 for (str_op, op, dialects) in bitwise_ops {
2444- let select = dialects.verified_only_select(&format!("SELECT a {} b", & str_op));
2444+ let select = dialects.verified_only_select(&format!("SELECT a {} b", str_op));
24452445 assert_eq!(
24462446 SelectItem::UnnamedExpr(Expr::BinaryOp {
24472447 left: Box::new(Expr::Identifier(Ident::new("a"))),
@@ -19100,7 +19100,7 @@ fn parse_generic_unary_ops() {
1910019100 ("+", UnaryOperator::Plus),
1910119101 ];
1910219102 for (str_op, op) in unary_ops {
19103- let select = verified_only_select(&format!("SELECT {}expr", & str_op));
19103+ let select = verified_only_select(&format!("SELECT {}expr", str_op));
1910419104 assert_eq!(
1910519105 UnnamedExpr(UnaryOp {
1910619106 op: *op,
0 commit comments