瀏覽代碼

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 年之前
父節點
當前提交
42a1e09b80
共有 1 個文件被更改,包括 2 次插入1 次删除
  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;
 }