Skip to content

Commit

Permalink
just format
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-tom committed Feb 15, 2024
1 parent c1c27d6 commit 9d7897f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ fn translate_mutation(
sql::helpers::make_column_alias("returning".to_string()),
),
state.make_table_alias("aggregates".to_string()),
rows_and_aggregates_to_select_set(returning_select, aggregate_select)?
rows_and_aggregates_to_select_set(returning_select, aggregate_select)?,
);

let common_table_expression = sql::ast::CommonTableExpression {
Expand Down Expand Up @@ -276,7 +276,7 @@ fn translate_native_query(
sql::helpers::make_column_alias("returning".to_string()),
),
state.make_table_alias("aggregates".to_string()),
rows_and_aggregates_to_select_set(returning_select, aggregate_select)?
rows_and_aggregates_to_select_set(returning_select, aggregate_select)?,
);

// add the procedure native query definition is a with clause.
Expand Down

0 comments on commit 9d7897f

Please sign in to comment.