File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -5408,8 +5408,8 @@ impl fmt::Display for Statement {
54085408 table,
54095409 source,
54105410 on,
5411- clauses,
5412- output
5411+ clauses,
5412+ output,
54135413 } => {
54145414 write ! (
54155415 f,
@@ -7924,7 +7924,10 @@ pub struct Output {
79247924
79257925impl fmt:: Display for Output {
79267926 fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
7927- let Output { select_items, into_table } = self ;
7927+ let Output {
7928+ select_items,
7929+ into_table,
7930+ } = self ;
79287931
79297932 write ! (
79307933 f,
Original file line number Diff line number Diff line change @@ -9558,12 +9558,10 @@ fn parse_merge() {
95589558
95599559 let sql = "MERGE INTO s.bar AS dest USING newArrivals AS S ON (1 > 1) WHEN NOT MATCHED THEN INSERT VALUES (stg.A, stg.B, stg.C)" ;
95609560 verified_stmt ( sql) ;
9561-
95629561}
95639562
95649563#[ test]
95659564fn test_merge_with_output ( ) {
9566-
95679565 let sql = "MERGE INTO target_table USING source_table \
95689566 ON target_table.id = source_table.oooid \
95699567 WHEN MATCHED THEN \
You can’t perform that action at this time.
0 commit comments