(ExecType execType)
| 1466 | } |
| 1467 | |
| 1468 | public static boolean isSparkExecType(ExecType execType) { |
| 1469 | if (execType.name().toLowerCase().startsWith("spark")) { |
| 1470 | return true; |
| 1471 | } |
| 1472 | return false; |
| 1473 | } |
| 1474 | |
| 1475 | public static String findPigJarName() { |
| 1476 | final String suffix = System.getProperty("hadoopversion").equals("20") ? "1" : "2"; |
no test coverage detected