[
https://issues.apache.org/jira/browse/HIVE-24383?focusedWorklogId=578301&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-578301
]
ASF GitHub Bot logged work on HIVE-24383:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 07/Apr/21 11:40
Start Date: 07/Apr/21 11:40
Worklog Time Spent: 10m
Work Description: zeroflag commented on a change in pull request #2130:
URL: https://github.com/apache/hive/pull/2130#discussion_r608575658
##########
File path: hplsql/src/main/java/org/apache/hive/hplsql/Stmt.java
##########
@@ -961,6 +987,22 @@ public Integer forRange(HplsqlParser.For_range_stmtContext
ctx) {
return 0;
}
+ public Integer unconditionalLoop(HplsqlParser.Unconditional_loop_stmtContext
ctx) {
+ trace(ctx, "UNCONDITIONAL LOOP - ENTERED");
+ String label = exec.labelPop();
+ while (true) {
+ exec.enterScope(Scope.Type.LOOP);
+ visit(ctx.block());
+ exec.leaveScope();
+ if (canContinue(label)) {
+ continue;
+ }
+ break;
Review comment:
Ok.
##########
File path: hplsql/src/main/java/org/apache/hive/hplsql/Var.java
##########
@@ -26,13 +26,14 @@
import org.apache.hive.hplsql.executor.QueryResult;
+
Review comment:
removed.
--
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:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 578301)
Time Spent: 40m (was: 0.5h)
> Add Table type to HPL/SQL
> -------------------------
>
> Key: HIVE-24383
> URL: https://issues.apache.org/jira/browse/HIVE-24383
> Project: Hive
> Issue Type: Sub-task
> Components: hpl/sql
> Reporter: Attila Magyar
> Assignee: Attila Magyar
> Priority: Major
> Labels: pull-request-available
> Time Spent: 40m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)