You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Jesus Camacho Rodriguez (JIRA)" <ji...@apache.org> on 2017/10/20 18:29:00 UTC

[jira] [Created] (HIVE-17867) Exception in windowing functions with TIMESTAMP WITH LOCAL TIME ZONE type

Jesus Camacho Rodriguez created HIVE-17867:
----------------------------------------------

             Summary: Exception in windowing functions with TIMESTAMP WITH LOCAL TIME ZONE type
                 Key: HIVE-17867
                 URL: https://issues.apache.org/jira/browse/HIVE-17867
             Project: Hive
          Issue Type: Bug
            Reporter: Jesus Camacho Rodriguez


The following query:
{code}
select ts, i, sum(f) over (partition by i order by ts)
from over10k_2
limit 100;
{code}
fails with the following stacktrace:
{code}
org.apache.hadoop.hive.ql.parse.SemanticException: Failed to breakup Windowing invocations into Groups. At least 1 group must only depend on input columns. Also check for circular dependencies.
Underlying error: Primitive type TIMESTAMPLOCALTZ not supported in Value Boundary expression
        at org.apache.hadoop.hive.ql.parse.WindowingComponentizer.next(WindowingComponentizer.java:97)
        at org.apache.hadoop.hive.ql.parse.SemanticAnalyzer.genWindowingPlan(SemanticAnalyzer.java:13508)
        at org.apache.hadoop.hive.ql.parse.SemanticAnalyzer.genPostGroupByBodyPlan(SemanticAnalyzer.java:9912)
        at org.apache.hadoop.hive.ql.parse.SemanticAnalyzer.genBodyPlan(SemanticAnalyzer.java:9871)
        at org.apache.hadoop.hive.ql.parse.SemanticAnalyzer.genPlan(SemanticAnalyzer.java:10784)
...
{code}

The list of supported types for boundaries expressions in PTFTranslator needs to be updated.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)