MichaelChirico commented on pull request #28386: URL: https://github.com/apache/spark/pull/28386#issuecomment-728186184
e.g. in [`SPARK-31517`](https://issues.apache.org/jira/browse/SPARK-31517), the supplied width was 98: ``` over(rank(), orderBy(windowPartitionBy(column("cyl")), desc(column("mpg")), desc(column("disp")))) ``` Not impossible to imagine such expressions ballooning eventually to >500, e.g. with (1) using long descriptive column names (2) partitioning by a few columns instead of just 1 (3) sorting by a few columns instead of just one (4) using different window function with a longer name. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
