You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Shiva Sankari Perambalam (JIRA)" <ji...@apache.org> on 2019/02/21 23:42:01 UTC

[jira] [Created] (SPARK-26962) Windows Function LEAD in Spark SQL is not fetching consistent results.

Shiva Sankari Perambalam created SPARK-26962:
------------------------------------------------

             Summary: Windows Function LEAD in Spark SQL is not fetching consistent results.
                 Key: SPARK-26962
                 URL: https://issues.apache.org/jira/browse/SPARK-26962
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 2.4.0
            Reporter: Shiva Sankari Perambalam


Using a Lead function on a DATETIME column is giving inconsistent results in Spark sql.
{code:java}
Lead(date) over (partition by id, code order by date){code}
where Date is DATETIME, id and code is a String.
{code:java}
val testdf1= sparkSession.sql(s""" select date, Lead(date) over (partition by id, code order by date) as lead_date from <SOME_VIEW>"""){code}
The result set is sometimes having the same data as the date instead of the lead_date

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org