You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Thomas Tauber-Marshall (JIRA)" <ji...@apache.org> on 2018/02/02 22:49:02 UTC

[jira] [Created] (IMPALA-6473) IllegalStateException caused by analytic sort

Thomas Tauber-Marshall created IMPALA-6473:
----------------------------------------------

             Summary: IllegalStateException caused by analytic sort
                 Key: IMPALA-6473
                 URL: https://issues.apache.org/jira/browse/IMPALA-6473
             Project: IMPALA
          Issue Type: Bug
          Components: Frontend
    Affects Versions: Impala 2.12.0
            Reporter: Thomas Tauber-Marshall
            Assignee: Thomas Tauber-Marshall


Repro:
{noformat}
drop table if exists default.tt;
CREATE TABLE default.tt (instruction_date timestamp);
SELECT sum(1) OVER( partition by to_date(instruction_date) ORDER BY to_date(instruction_date) rows UNBOUNDED PRECEDING) FROM default.tt;
{noformat}



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