We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b2997e commit 3688408Copy full SHA for 3688408
src/expr.rs
@@ -594,7 +594,7 @@ impl PyExpr {
594
),
595
_ => Err(
596
DataFusionError::ExecutionError(datafusion::error::DataFusionError::Plan(
597
- "Using `over` requires an aggregate function.".to_string(),
+ format!("Using {} with `over` is not allowed. Must use an aggregate or window function.", self.expr.variant_name()),
598
))
599
.into(),
600
0 commit comments