Skip to content

Commit

Permalink
Merge pull request hpcc-systems#2118 from ghalliday/issue1944
Browse files Browse the repository at this point in the history
Ensure jobtemp spill files are replicated

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
  • Loading branch information
richardkchapman committed Apr 18, 2012
2 parents 1dfd45f + ef07542 commit 78c4c8a
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ecl/hqlcpp/hqlttcpp.cpp
Expand Up @@ -4773,31 +4773,26 @@ void GlobalAttributeInfo::doSplitGlobalDefinition(ITypeInfo * type, IHqlExpressi
}
case no_stored:
args.append(*createAttribute(ownedAtom));
args.append(*createAttribute(_noReplicate_Atom));
args.append(*createAttribute(sequenceAtom, getStoredSequenceNumber()));
break;
case no_checkpoint:
args.append(*createAttribute(ownedAtom));
args.append(*createAttribute(_noReplicate_Atom));
args.append(*createAttribute(sequenceAtom, getLocalSequenceNumber()));
break;
case no_once:
args.append(*createAttribute(ownedAtom));
args.append(*createAttribute(_noReplicate_Atom));
args.append(*createAttribute(sequenceAtom, getOnceSequenceNumber()));
break;
case no_global:
//May extend over several different graphs
args.append(*createAttribute(sequenceAtom, getLocalSequenceNumber()));
args.append(*createAttribute(ownedAtom));
args.append(*createAttribute(jobTempAtom));
args.append(*createAttribute(_noReplicate_Atom));
break;
default:
//global, independent, success, failure, etc. etc.
args.append(*createAttribute(ownedAtom));
args.append(*createAttribute(jobTempAtom));
args.append(*createAttribute(_noReplicate_Atom));
args.append(*createAttribute(sequenceAtom, getLocalSequenceNumber()));
break;
}
Expand Down

0 comments on commit 78c4c8a

Please sign in to comment.