Ignatiy Vdovichenko created SPARK-36639:
-------------------------------------------

             Summary: SQL sequence function with interval returns unexpected 
error in latest versions
                 Key: SPARK-36639
                 URL: https://issues.apache.org/jira/browse/SPARK-36639
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 3.1.2, 3.0.3
            Reporter: Ignatiy Vdovichenko


For example this returns 
{color:#FF0000}java.lang.ArrayIndexOutOfBoundsException: 1 {color}
{code:java}
select sequence(
 date_trunc('month', '2021-08-30'),
 date_trunc('month', '2021-08-15'),
 - interval 1 month){code}
Another cases like - all ok
{code:java}
select sequence(
 date_trunc('month', '2021-07-15'),
 date_trunc('month', '2021-08-30'),
 interval 1 month) as x

 , sequence(
 date_trunc('month', '2021-08-30'),
 date_trunc('month', '2021-07-15'),
 - interval 1 month) as y

 , sequence(
 date_trunc('month', '2021-08-15'),
 date_trunc('month', '2021-08-30'),
 interval 1 month) as z{code}

In version 3.0.0 this works



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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

Reply via email to