Skip to content

Commit

Permalink
Rewrite error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jcsherin committed Nov 14, 2024
1 parent 46f4212 commit 880b3f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion datafusion/proto/src/physical_plan/to_proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ pub fn serialize_physical_window_expr(
(!buf.is_empty()).then_some(buf),
)
} else {
return not_impl_err!("WindowExpr not supported: {window_expr:?}");
return not_impl_err!(
"User-defined window function not supported: {window_expr:?}"
);
}
} else {
return not_impl_err!("WindowExpr not supported: {window_expr:?}");
Expand Down

0 comments on commit 880b3f2

Please sign in to comment.