Browse Source

Merge pull request #6864 from ghalliday/issue12541

HPCC-12541 Preserve ORDERED()

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 10 years ago
parent
commit
731a803a7e
1 changed files with 1 additions and 1 deletions
  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)