Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/11050#discussion_r52096964
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/namedExpressions.scala
 ---
    @@ -114,16 +117,21 @@ abstract class Attribute extends LeafExpression with 
NamedExpression {
      * Note that exprId and qualifiers are in a separate parameter list because
      * we only pattern match on child and name.
      *
    - * @param child the computation being performed
    - * @param name the name to be associated with the result of computing 
[[child]].
    + * @param child The computation being performed
    + * @param name The name to be associated with the result of computing 
[[child]].
      * @param exprId A globally unique id used to check if an 
[[AttributeReference]] refers to this
      *               alias. Auto-assigned if left blank.
    + * @param qualifiers A list of strings that can be used to referred to 
this attribute in a fully
    + *                   qualified way. Consider the examples tableName.name, 
subQueryAlias.name.
    + *                   tableName and subQueryAlias are possible qualifiers.
      * @param explicitMetadata Explicit metadata associated with this alias 
that overwrites child's.
    + * @param isGenerated A flag to indicate if this alias is generated by 
Catalyst
      */
     case class Alias(child: Expression, name: String)(
         val exprId: ExprId = NamedExpression.newExprId,
         val qualifiers: Seq[String] = Nil,
    -    val explicitMetadata: Option[Metadata] = None)
    +    val explicitMetadata: Option[Metadata] = None,
    +    override val isGenerated: Option[Boolean] = None)
    --- End diff --
    
    Thank you, will make a change.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to