()
| 141 | } |
| 142 | |
| 143 | @Test |
| 144 | public void test5() throws IOException, RecognitionException { |
| 145 | String query = "a = load 'x' as (name, age, gpa);" + |
| 146 | "b = foreach a generate name, age + 2L, 3.125F, 3.4e2;" + |
| 147 | " store b into 'y'; "; |
| 148 | shouldPass( query ); |
| 149 | } |
| 150 | |
| 151 | @Test |
| 152 | public void test6() throws IOException, RecognitionException { |
nothing calls this directly
no test coverage detected