Cargo fmt

This commit is contained in:
Petr Novotnik 2025-11-25 18:09:27 +01:00 committed by xitep
parent 43a6ab1885
commit 0547fe8ffb
3 changed files with 21 additions and 6 deletions

View file

@ -1920,7 +1920,10 @@ fn parse_merge() {
predicate: Some(Expr::value(number("1"))),
action: MergeAction::Insert(MergeInsertExpr {
insert_token: AttachedToken::empty(),
columns: vec![Ident::new("product").into(), Ident::new("quantity").into(),],
columns: vec![
Ident::new("product").into(),
Ident::new("quantity").into(),
],
kind_token: AttachedToken::empty(),
kind: MergeInsertKind::Row,
insert_predicate: None,
@ -1932,7 +1935,10 @@ fn parse_merge() {
predicate: None,
action: MergeAction::Insert(MergeInsertExpr {
insert_token: AttachedToken::empty(),
columns: vec![Ident::new("product").into(), Ident::new("quantity").into(),],
columns: vec![
Ident::new("product").into(),
Ident::new("quantity").into(),
],
kind_token: AttachedToken::empty(),
kind: MergeInsertKind::Row,
insert_predicate: None,