Skip to content

Commit

Permalink
Fix tidy-check
Browse files Browse the repository at this point in the history
  • Loading branch information
kryonix committed Mar 18, 2024
1 parent 3f3f7b2 commit 382894b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/transform/statement/transform_pivot_stmt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ unique_ptr<QueryNode> Transformer::TransformPivotStatement(duckdb_libpgquery::PG
// transform order by/limit modifiers
TransformModifiers(select, *select_node);

return select_node;
return std::move(select_node);
}

} // namespace duckdb

0 comments on commit 382894b

Please sign in to comment.