()
| 255 | } |
| 256 | |
| 257 | @Test |
| 258 | public void test9() throws IOException, RecognitionException { |
| 259 | String query = "a = load 'x' as (u,v);" + |
| 260 | "b = load 'y' as (u,w);" + |
| 261 | "c = join a by u, b by u;" + |
| 262 | "d = foreach c generate a::u, b::u, w;"; |
| 263 | shouldPass( query ); |
| 264 | } |
| 265 | |
| 266 | @Test |
| 267 | public void test10() throws IOException, RecognitionException { |
nothing calls this directly
no test coverage detected