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

    https://github.com/apache/spark/pull/3066#discussion_r19731906
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Projection.scala
 ---
    @@ -139,6 +140,12 @@ class JoinedRow extends Row {
       def getString(i: Int): String =
         if (i < row1.size) row1.getString(i) else row2.getString(i - row1.size)
     
    +  def getDate(i: Int): Date =
    +    if (i < row1.size) row1.getDate(i) else row2.getDate(i - row1.size)
    +
    +  def getTimestamp(i: Int): Timestamp =
    +    if (i < row1.size) row1.getTimestamp(i) else row2.getTimestamp(i - 
row1.size)
    +
    --- End diff --
    
    I see.  I am removing them.


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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to