()
| 133 | } |
| 134 | |
| 135 | @Test |
| 136 | public void test4() throws IOException, RecognitionException { |
| 137 | String query = "a = load '1.txt' as (name, age, gpa); b = group a by name;" + |
| 138 | "c = foreach b generate group, COUNT(a.age);" + |
| 139 | "store c into 'y';"; |
| 140 | shouldPass( query ); |
| 141 | } |
| 142 | |
| 143 | @Test |
| 144 | public void test5() throws IOException, RecognitionException { |
nothing calls this directly
no test coverage detected