File tree Expand file tree Collapse file tree
datafusion/proto/src/logical_plan Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -301,7 +301,8 @@ pub fn parse_expr(
301301 exec_datafusion_err ! ( "missing window frame during deserialization" )
302302 } ) ?;
303303
304- // TODO: support proto for null treatment
304+ // TODO: support null treatment, distinct, and filter in proto.
305+ // See https://github.com/apache/datafusion/issues/17417
305306 match window_function {
306307 window_expr_node:: WindowFunction :: Udaf ( udaf_name) => {
307308 let udaf_function = match & expr. fun_definition {
Original file line number Diff line number Diff line change @@ -314,7 +314,8 @@ pub fn serialize_expr(
314314 ref partition_by,
315315 ref order_by,
316316 ref window_frame,
317- // TODO: support null treatment in proto
317+ // TODO: support null treatment, distinct, and filter in proto.
318+ // See https://github.com/apache/datafusion/issues/17417
318319 null_treatment : _,
319320 distinct : _,
320321 filter : _,
You can’t perform that action at this time.
0 commit comments