Selaa lähdekoodia

Merge pull request #6864 from ghalliday/issue12541

HPCC-12541 Preserve ORDERED()

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 10 vuotta sitten
vanhempi
commit
731a803a7e
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      ecl/hql/hqlexpr.cpp

+ 1 - 1
ecl/hql/hqlexpr.cpp

@@ -12426,7 +12426,7 @@ extern IHqlExpression * createCompound(node_operator op, const HqlExprArray & ac
     if (op == no_compound)
         return createCompound(actions);
     else
-        return createActionList(actions);
+        return createActionList(op, actions);
 }
 
 extern IHqlExpression * createComma(IHqlExpression * expr1, IHqlExpression * expr2)