Skip to content

Commit

Permalink
Merge pull request #17428 from ghalliday/issue29667
Browse files Browse the repository at this point in the history
HPCC-29667 Allow remoteread.ecl to be run stand alone

Reviewed-By: Attila Vamos <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Nov 7, 2023
2 parents fb85276 + 127ca54 commit 633133b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testing/regress/ecl/setup/files.ecl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ SHARED STRING _indexPrefix := '~regress::' +
EXPORT filePrefix := #IFDEFINED(root.filePrefix, _filePrefix);
EXPORT indexPrefix := #IFDEFINED(root.filePrefix, _indexPrefix);

EXPORT QueryFilePrefixId := __TARGET_PLATFORM__ + '::' + Str.ToLowerCase(WORKUNIT) + '::';
wuid := Str.ToLowerCase(WORKUNIT);
wuidScope := IF(wuid <> '', wuid, 'WORKUNIT');
EXPORT QueryFilePrefixId := __TARGET_PLATFORM__ + '::' + wuidScope + '::';
EXPORT QueryFilePrefix := filePrefix + QueryFilePrefixId;

EXPORT DG_FileOut := filePrefix + 'DG_';
Expand Down

0 comments on commit 633133b

Please sign in to comment.