Browse Source

HPCC-12284 Changed REAL index to index range in hashjoin regression test

Signed-off-by: jamienoss <james.noss@lexisnexis.com>
jamienoss 11 years ago
parent
commit
b5b3c80f61
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ecl/regress/hashjoin.ecl

+ 1 - 1
ecl/regress/hashjoin.ecl

@@ -47,7 +47,7 @@ JoinRecord JoinTransform (namesRecord l, addressRecord r) :=
                 END;
 
 j := JOIN(DISTRIBUTE(namesTable, HASH(surname[1..8])),
-          DISTRIBUTE(addressTable, HASH(surname[1.8])),
+          DISTRIBUTE(addressTable, HASH(surname[1..8])),
           LEFT.surname[1..8] = RIGHT.surname[1..8] AND (LEFT.surname[12] != RIGHT.surname[13]),
           JoinTransform(LEFT,RIGHT));