(Throwable e)
| 557 | } |
| 558 | |
| 559 | public static String getStackStraceStr(Throwable e) { |
| 560 | ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
| 561 | PrintStream ps = new PrintStream(baos); |
| 562 | e.printStackTrace(ps); |
| 563 | return baos.toString(); |
| 564 | } |
| 565 | |
| 566 | public static boolean isLocal(PigContext pigContext, Configuration conf) { |
| 567 | return pigContext.getExecType().isLocal() || conf.getBoolean(PigImplConstants.CONVERTED_TO_LOCAL, false); |
no test coverage detected