Skip to content

Commit

Permalink
Internal duckdb#3860: Deserialise Secondary Orderings (duckdb#15541)
Browse files Browse the repository at this point in the history
* Add missing default for arg_orders

fixes: duckdblabs/duckdb-internal#3860
  • Loading branch information
Mytherin authored Jan 6, 2025
2 parents 13ba13c + e55d277 commit adc6f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/planner/expression/bound_window_expression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ unique_ptr<Expression> BoundWindowExpression::Deserialize(Deserializer &deserial
deserializer.ReadPropertyWithExplicitDefault(211, "default_expr", result->default_expr, unique_ptr<Expression>());
deserializer.ReadProperty(212, "exclude_clause", result->exclude_clause);
deserializer.ReadProperty(213, "distinct", result->distinct);
deserializer.ReadProperty(214, "arg_orders", result->arg_orders);
deserializer.ReadPropertyWithExplicitDefault(214, "arg_orders", result->arg_orders, vector<BoundOrderByNode>());
return std::move(result);
}

Expand Down

0 comments on commit adc6f60

Please sign in to comment.