Skip to content

Commit b80a374

Browse files
committedApr 20, 2018
HPCC-19509 Fix keyed join 07cc test.
The scaled LHS introduced by HPCC-19457 could produce a mismatched count. Ensure the expected count correct by adjusting the lhs keys in the scaled count. Signed-off-by: Jake Smith <[email protected]>
1 parent b1e4941 commit b80a374

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎PerformanceTesting/ecl/07aa_keyedjoin123.ecl

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import suite.perform.files;
1010
import suite.perform.util;
1111

1212
unsigned scale := IF(config.smokeTest, 0x10000, 0x100);
13-
ds := DATASET(config.simpleRecordCount DIV scale, format.createSimple(COUNTER * scale), DISTRIBUTED);
13+
ds := DATASET(config.simpleRecordCount DIV scale, format.createSimple(1 + (COUNTER-1) * scale), DISTRIBUTED);
1414

1515
j := JOIN(ds, files.manyIndex123,
1616
RIGHT.id1a = util.byte(LEFT.id1, 0) AND

‎PerformanceTesting/ecl/07cc_keyedjoinlimit_no3.ecl

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import suite.perform.files;
88
import suite.perform.util;
99

1010
unsigned scale := IF(config.smokeTest, 0x10000, 0x100);
11-
ds := DATASET(config.simpleRecordCount DIV scale, format.createSimple(COUNTER * scale), DISTRIBUTED);
11+
ds := DATASET(config.simpleRecordCount DIV scale, format.createSimple(1 + (COUNTER-1) * scale), DISTRIBUTED);
1212

1313
j := JOIN(ds, files.manyIndex123,
1414
RIGHT.id1a = util.byte(LEFT.id1, 0) AND
@@ -20,4 +20,4 @@ j := JOIN(ds, files.manyIndex123,
2020
RIGHT.id1g = util.byte(LEFT.id1, 6), LIMIT(256));
2121
cnt := COUNT(NOFOLD(j));
2222

23-
OUTPUT(cnt = (config.simpleRecordCount DIV scale) * 256 - 255); // -255 because [1..255] only match 255 entries
23+
OUTPUT(cnt = (config.simpleRecordCount DIV scale) * 256 - 1); // -1 because 1st record only matches 255 entries.

0 commit comments

Comments
 (0)
Please sign in to comment.