|
@@ -16368,7 +16368,7 @@ ABoundActivity * HqlCppTranslator::doBuildActivitySort(BuildCtx & ctx, IHqlExpre
|
|
|
|
|
|
IHqlExpression * stable = expr->queryAttribute(stableAtom);
|
|
|
IHqlExpression * unstable = expr->queryAttribute(unstableAtom);
|
|
|
- IHqlExpression * internal = expr->queryAttribute(internalAtom);
|
|
|
+ IHqlExpression * spill = expr->queryAttribute(spillAtom);
|
|
|
IHqlExpression * method = NULL;
|
|
|
StringBuffer flags;
|
|
|
if (stable)
|
|
@@ -16381,10 +16381,8 @@ ABoundActivity * HqlCppTranslator::doBuildActivitySort(BuildCtx & ctx, IHqlExpre
|
|
|
flags.append("|TAFunstable");
|
|
|
method = unstable->queryChild(0);
|
|
|
}
|
|
|
- if (internal)
|
|
|
- {
|
|
|
+ if (spill)
|
|
|
flags.append("|TAFspill");
|
|
|
- }
|
|
|
if (!method || method->isConstant())
|
|
|
flags.append("|TAFconstant");
|
|
|
|