Ashutosh Chauhan created HIVE-4028:
--------------------------------------
Summary: Bring paranthesis handling in windowing specification in
compliance with sql standard
Key: HIVE-4028
URL: https://issues.apache.org/jira/browse/HIVE-4028
Project: Hive
Issue Type: Bug
Components: PTF-Windowing
Reporter: Ashutosh Chauhan
Assignee: Ashutosh Chauhan
{noformat}
select s, sum(b) over (partition by i order by si rows unbounded preceding)
from over100k;
{noformat}
is sql compliant but doesn't work, but following does work:
{noformat}
select s, sum(b) over (partition by i order by si rows unbounded preceding)
from over100k;
{noformat}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira