Browse Source

Generate graph results instead of spills in thor

- Thor does support distributed graph results.  This was a legacy test.

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 13 years ago
parent
commit
42a1e09b80
1 changed files with 2 additions and 1 deletions
  1. 2 1
      ecl/hqlcpp/hqlresource.cpp

+ 2 - 1
ecl/hqlcpp/hqlresource.cpp

@@ -1161,7 +1161,8 @@ bool ResourcerInfo::useGraphResult()
 
     if (linkedFromChild)
         return true;
-    if (options->targetClusterType != HThorCluster)
+    //Roxie converts spills into splitters, so best to retain them
+    if (options->targetClusterType == RoxieCluster)
         return false;
     return true;
 }