Преглед изворни кода

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: