()
| 125 | } |
| 126 | |
| 127 | @Test |
| 128 | public void test3() throws IOException, RecognitionException { |
| 129 | String query = "a = load '1.txt' as (a0);" + |
| 130 | "b = foreach a generate flatten( (bag{tuple(map[])})a0 ) as b0:map[];" + |
| 131 | "c = foreach b generate (long)b0#'key1';"; |
| 132 | shouldPass( query ); |
| 133 | } |
| 134 | |
| 135 | @Test |
| 136 | public void test4() throws IOException, RecognitionException { |
nothing calls this directly
no test coverage detected