()
| 110 | } |
| 111 | |
| 112 | @Test |
| 113 | public void testStoreLoad() throws Exception { |
| 114 | String query = |
| 115 | "a = load 'file:///tmp/input' as (x:int, y:int);" + |
| 116 | "store a into 'file:///tmp/pigoutput';" + |
| 117 | "b = load 'file:///tmp/pigoutput' as (x:int, y:int);" + |
| 118 | "store b into 'file:///tmp/pigoutput1';"; |
| 119 | |
| 120 | run(query, "test/org/apache/pig/test/data/GoldenFiles/tez/TEZC-LoadStore-1.gld"); |
| 121 | } |
| 122 | |
| 123 | @Test |
| 124 | public void testStoreLoadMultiple() throws Exception { |