()
| 49 | private File tmpFile; |
| 50 | |
| 51 | public TestOrderBy() throws Throwable { |
| 52 | DecimalFormat myFormatter = new DecimalFormat("0000000"); |
| 53 | for (int i = 0; i < DATALEN; i++) { |
| 54 | DATA[0][i] = myFormatter.format(i); |
| 55 | DATA[1][i] = myFormatter.format(DATALEN - i - 1); |
| 56 | } |
| 57 | pig = new PigServer(ExecType.MAPREDUCE, cluster.getProperties()); |
| 58 | } |
| 59 | |
| 60 | @Before |
| 61 | public void setUp() throws Exception { |
nothing calls this directly
no test coverage detected