Author: szita
Date: Fri May 26 13:19:04 2017
New Revision: 1796284
URL: http://svn.apache.org/viewvc?rev=1796284&view=rev
Log:
PIG-5167: Limit_13 should test distinct and limit in Spark mode only (nkollar
via szita)
Modified:
pig/branches/spark/test/e2e/pig/tests/nightly.conf
Modified: pig/branches/spark/test/e2e/pig/tests/nightly.conf
URL:
http://svn.apache.org/viewvc/pig/branches/spark/test/e2e/pig/tests/nightly.conf?rev=1796284&r1=1796283&r2=1796284&view=diff
==============================================================================
--- pig/branches/spark/test/e2e/pig/tests/nightly.conf (original)
+++ pig/branches/spark/test/e2e/pig/tests/nightly.conf Fri May 26 13:19:04 2017
@@ -2305,11 +2305,11 @@ store b into ':OUTPATH:';\,
{
'num' => 13,
'execonly' => 'spark', # Limit_4 failed on
Spark: distinct doesn't do implicit sort like it does in MR
+ 'benchmark_exectype' => 'spark',
'pig' =>q\a = load
':INPATH:/singlefile/studentnulltab10k';
b = distinct a;
-c = order b by $0, $1, $2;
-d = limit c 100;
-store d into ':OUTPATH:';\,
+c = limit b 100;
+store c into ':OUTPATH:';\,
}
]
},