Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2543#discussion_r18126983
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/complexTypes.scala
 ---
    @@ -73,31 +75,35 @@ case class GetItem(child: Expression, ordinal: 
Expression) extends Expression {
     /**
      * Returns the value of fields in the Struct `child`.
      */
    -case class GetField(child: Expression, fieldName: String) extends 
UnaryExpression {
    +case class GetField(child: Expression, field: StructField, ordinal: Int) 
extends UnaryExpression {
       type EvaluatedType = Any
     
       def dataType = field.dataType
       override def nullable = child.nullable || field.nullable
       override def foldable = child.foldable
     
    -  protected def structType = child.dataType match {
    -    case s: StructType => s
    -    case otherType => sys.error(s"GetField is not valid on fields of type 
$otherType")
    -  }
    -
    -  lazy val field =
    -    structType.fields
    -        .find(_.name == fieldName)
    -        .getOrElse(sys.error(s"No such field $fieldName in 
${child.dataType}"))
    -
    -  lazy val ordinal = structType.fields.indexOf(field)
    -
    -  override lazy val resolved = childrenResolved && 
child.dataType.isInstanceOf[StructType]
    -
       override def eval(input: Row): Any = {
         val baseValue = child.eval(input).asInstanceOf[Row]
         if (baseValue == null) null else baseValue(ordinal)
       }
     
    -  override def toString = s"$child.$fieldName"
    +  override def toString = s"$child.${field.name}"
    +}
    +
    +object GetField {
    --- End diff --
    
    I was going to put this logic into Analyzer rule, but found some tests 
depend on `GetField(child, fieldName)`, so I have to create this constructor of 
`GetField`. And these two are so similar, so I combine them together. Maybe I 
should fix those tests instead?


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