You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Ignatiy Vdovichenko (Jira)" <ji...@apache.org> on 2021/09/01 12:18:00 UTC

[jira] [Created] (SPARK-36639) SQL sequence function with interval returns unexpected error in latest versions

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: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org