[ https://issues.apache.org/jira/browse/HIVE-24865?focusedWorklogId=564001&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-564001 ]
ASF GitHub Bot logged work on HIVE-24865: ----------------------------------------- Author: ASF GitHub Bot Created on: 10/Mar/21 19:01 Start Date: 10/Mar/21 19:01 Worklog Time Spent: 10m Work Description: kasakrisz commented on pull request #2056: URL: https://github.com/apache/hive/pull/2056#issuecomment-795917263 Trying a different approach to populate ignore nulls properties in Calcite plan: #2060 Closing this ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 564001) Time Spent: 40m (was: 0.5h) > Implement Respect/Ignore Nulls in first/last_value > -------------------------------------------------- > > Key: HIVE-24865 > URL: https://issues.apache.org/jira/browse/HIVE-24865 > Project: Hive > Issue Type: New Feature > Components: Parser, UDF > Reporter: Krisztian Kasa > Assignee: Krisztian Kasa > Priority: Minor > Labels: pull-request-available > Time Spent: 40m > Remaining Estimate: 0h > > {code:java} > <null treatment> ::= > RESPECT NULLS | IGNORE NULLS > <first or last value function> ::= > <first or last value> <left paren> <value expression> <right paren> [ <null > treatment> > ] > <first or last value> ::= > FIRST_VALUE | LAST_VALUE > {code} > Example: > {code:java} > select last_value(b) ignore nulls over(partition by a order by b) from t1; > {code} > Existing non-standard implementation: > {code:java} > select last_value(b, true) over(partition by a order by b) from t1; > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)