ritikam2 commented on PR #40116:
URL: https://github.com/apache/spark/pull/40116#issuecomment-1478932824

   Perhaps the following would be better solution. Instead of looking for star 
any  UnresolvedFunction should have UnresolvedAlias.  Any comments?
   
     `private[this] def alias(expr: Expression): NamedExpression = expr match {
       case expr: NamedExpression => expr
       case a: AggregateExpression if 
a.aggregateFunction.isInstanceOf[TypedAggregateExpression] =>
         UnresolvedAlias(a, Some(Column.generateAlias))
       case expr: Expression =>
          if (expr.isInstanceOf[UnresolvedFunction]) {
           UnresolvedAlias(expr, None)
         } else {
            Alias(expr, toPrettySQL(expr))()
         }
     }`


-- 
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.

To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to