Bläddra i källkod

Merge pull request #6889 from richardkchapman/topn-test

HPCC-12917 Regression suite test topn.ecl doesn't test topn

Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
Gavin Halliday 10 år sedan
förälder
incheckning
ce6023b97a
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      testing/regress/ecl/topn.ecl

+ 1 - 1
testing/regress/ecl/topn.ecl

@@ -16,7 +16,7 @@
 ############################################################################## */
 
 
-i := dataset([{1}, {3}, {5}, {7}, {9}, {2}, {4}, {6}, {8}, {10}], {unsigned1 d});
+i := nofold(dataset([{1}, {3}, {5}, {7}, {9}, {2}, {4}, {6}, {8}, {10}], {unsigned1 d}));
 s := sort(i, d);
 
 output(choosen(sort(i, d+1), 1));