From e55d2777a5b61d29f119ab8accb7d8f21a2ac277 Mon Sep 17 00:00:00 2001 From: Richard Wesley <13156216+hawkfish@users.noreply.github.com> Date: Fri, 3 Jan 2025 10:27:17 -0800 Subject: [PATCH] Internal #3860: Deserialise Secondary Orderings * Add missing default for arg_orders fixes: duckdblabs/duckdb-internal#3860 --- src/planner/expression/bound_window_expression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/planner/expression/bound_window_expression.cpp b/src/planner/expression/bound_window_expression.cpp index 2701bd57a096..5f778db1424f 100644 --- a/src/planner/expression/bound_window_expression.cpp +++ b/src/planner/expression/bound_window_expression.cpp @@ -233,7 +233,7 @@ unique_ptr BoundWindowExpression::Deserialize(Deserializer &deserial deserializer.ReadPropertyWithExplicitDefault(211, "default_expr", result->default_expr, unique_ptr()); 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()); return std::move(result); }