浏览代码

HPCC-13261 Ensure streaming graph inputs are evaluated globally

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 10 年之前
父节点
当前提交
5cff6b3deb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ecl/hqlcpp/hqlinline.cpp

+ 1 - 1
ecl/hqlcpp/hqlinline.cpp

@@ -289,7 +289,7 @@ static unsigned calcInlineFlags(BuildCtx * ctx, IHqlExpression * expr)
     case no_getresult:
         return expr->isDatarow() ? RETevaluate : RETassign;
     case no_getgraphresult:
-        if (expr->hasAttribute(_distributed_Atom))
+        if (expr->hasAttribute(_distributed_Atom) || expr->hasAttribute(_streaming_Atom))
             return 0;
         return expr->isDatarow() ? RETevaluate : RETassign;
     case no_temptable: