(Iterator<Tuple> actualResultsIt,
String[] expectedResArray, String schemaString)
| 1246 | } |
| 1247 | |
| 1248 | static public void checkQueryOutputsAfterSortRecursive(Iterator<Tuple> actualResultsIt, |
| 1249 | String[] expectedResArray, String schemaString) throws IOException { |
| 1250 | LogicalSchema resultSchema = org.apache.pig.impl.util.Utils.parseSchema(schemaString); |
| 1251 | checkQueryOutputsAfterSortRecursive(actualResultsIt, expectedResArray, resultSchema); |
| 1252 | } |
| 1253 | /** |
| 1254 | * Helper function to check if the result of a Pig Query is in line with |
| 1255 | * expected results. It sorts actual and expected string results before comparison |
no test coverage detected