[
https://issues.apache.org/jira/browse/TAJO-1630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14562467#comment-14562467
]
ASF GitHub Bot commented on TAJO-1630:
--------------------------------------
GitHub user jihoonson opened a pull request:
https://github.com/apache/tajo/pull/592
TAJO-1630: Test failure after TAJO-1130
I've changed only two lines as follows. Everything else is related to unit
tests.
```
diff --git
a/tajo-core/src/main/java/org/apache/tajo/engine/planner/global/MasterPlan.java
b/tajo-core/src/main/java/org/apache/tajo/engine/planner/global/MasterPlan.java
index 22c3751..f8cd1e9 100644
---
a/tajo-core/src/main/java/org/apache/tajo/engine/planner/global/MasterPlan.java
+++
b/tajo-core/src/main/java/org/apache/tajo/engine/planner/global/MasterPlan.java
@@ -237,13 +237,13 @@ public class MasterPlan {
sb.append("Order of Execution\n");
sb.append("-------------------------------------------------------------------------------");
int order = 1;
- for (ExecutionBlock currentEB : cursor) {
+ for (ExecutionBlock currentEB : executionOrderCursor) {
sb.append("\n").append(order).append(": ").append(currentEB.getId());
order++;
}
sb.append("\n-------------------------------------------------------------------------------\n");
- for (ExecutionBlock block : cursor) {
+ for (ExecutionBlock block : executionOrderCursor) {
boolean terminal = false;
```
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/jihoonson/tajo-2 TAJO-1630
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/tajo/pull/592.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #592
----
commit dc93e22c6e31668f7dceed90d9b294d757264808
Author: Jihoon Son <[email protected]>
Date: 2015-05-28T08:06:50Z
TAJO-1630
----
> Test failure after TAJO-1130
> ----------------------------
>
> Key: TAJO-1630
> URL: https://issues.apache.org/jira/browse/TAJO-1630
> Project: Tajo
> Issue Type: Bug
> Components: test
> Reporter: Jihoon Son
> Assignee: Jihoon Son
> Fix For: 0.11.0
>
>
> This is my fault.
> The last time which our CI run to test TAJO-1130 was about 2 months ago. I
> forgot testing again before commit.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)