()
| 158 | } |
| 159 | |
| 160 | @Test |
| 161 | public void test7() throws IOException, RecognitionException { |
| 162 | String query = "a = load '/user/pig/tests/data/singlefile/studenttab10k';" + |
| 163 | "b = group a by $0;" + |
| 164 | "c = foreach b {c1 = order $1 by * using org.apache.pig.test.udf.orderby.OrdDesc; generate flatten(c1); };" + |
| 165 | "store c into '/user/pig/out/jianyong.1297305352/Order_15.out';"; |
| 166 | shouldPass( query ); |
| 167 | } |
| 168 | |
| 169 | @Test |
| 170 | public void test8() throws IOException, RecognitionException { |
nothing calls this directly
no test coverage detected