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

    https://github.com/apache/spark/pull/993#discussion_r13479648
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/stringOperations.scala
 ---
    @@ -23,6 +23,16 @@ import org.apache.spark.sql.catalyst.types.DataType
     import org.apache.spark.sql.catalyst.types.StringType
     import org.apache.spark.sql.catalyst.types.BooleanType
     
    +case class SubString(string: Expression, start: Expression, end: 
Expression) extends Expression {
    +  def children = string :: start :: end :: Nil
    +  def references = children.flatMap(_.references).toSet
    +  def dataType = StringType
    +  def nullable = string.nullable
    +
    +  override def eval(input: Row) = ???
    --- End diff --
    
    should this be filled in?


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to