You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2014/07/09 12:21:36 UTC

[09/12] git commit: Fix missing strategy constants in JSON dump generator

Fix missing strategy constants in JSON dump generator


Project: http://git-wip-us.apache.org/repos/asf/incubator-flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-flink/commit/a9b1daa1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-flink/tree/a9b1daa1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-flink/diff/a9b1daa1

Branch: refs/heads/master
Commit: a9b1daa125f109280027f9df3029bb4c49a0f326
Parents: 03c6160
Author: Stephan Ewen <se...@apache.org>
Authored: Wed Jul 9 03:07:21 2014 +0200
Committer: Stephan Ewen <se...@apache.org>
Committed: Wed Jul 9 03:10:18 2014 +0200

----------------------------------------------------------------------
 .../stratosphere/compiler/plandump/PlanJSONDumpGenerator.java | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-flink/blob/a9b1daa1/stratosphere-compiler/src/main/java/eu/stratosphere/compiler/plandump/PlanJSONDumpGenerator.java
----------------------------------------------------------------------
diff --git a/stratosphere-compiler/src/main/java/eu/stratosphere/compiler/plandump/PlanJSONDumpGenerator.java b/stratosphere-compiler/src/main/java/eu/stratosphere/compiler/plandump/PlanJSONDumpGenerator.java
index a1baff1..849da33 100644
--- a/stratosphere-compiler/src/main/java/eu/stratosphere/compiler/plandump/PlanJSONDumpGenerator.java
+++ b/stratosphere-compiler/src/main/java/eu/stratosphere/compiler/plandump/PlanJSONDumpGenerator.java
@@ -436,6 +436,13 @@ public class PlanJSONDumpGenerator {
 			case HYBRIDHASH_BUILD_SECOND:
 				locString = "Hybrid Hash (build: " + child2name + ")";
 				break;
+				
+			case HYBRIDHASH_BUILD_FIRST_CACHED:
+				locString = "Hybrid Hash (CACHED) (build: " + child1name + ")";
+				break;
+			case HYBRIDHASH_BUILD_SECOND_CACHED:
+				locString = "Hybrid Hash (CACHED) (build: " + child2name + ")";
+				break;
 
 			case NESTEDLOOP_BLOCKED_OUTER_FIRST:
 				locString = "Nested Loops (Blocked Outer: " + child1name + ")";