You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create_udwf_window_expr(&nth_value_udwf(),&[col("a",&schema)?], schema.as_ref(),"FIRST_VALUE(a) PARTITION BY [b] ORDER BY [a ASC NULLS LAST] RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW".to_string(),false)?;
284
+
let first_value_window = create_udwf_window_expr(
285
+
&first_value_udwf(),
286
+
&[col("a",&schema)?],
287
+
schema.as_ref(),
288
+
"FIRST_VALUE(a) PARTITION BY [b] ORDER BY [a ASC NULLS LAST] RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW".to_string(),
289
+
false,
290
+
)?;
291
+
// "FIRST_VALUE(a) PARTITION BY [b] ORDER BY [a ASC NULLS LAST] RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW",
286
292
let builtin_window_expr = Arc::new(BuiltInWindowExpr::new(
0 commit comments