(String str)
| 54 | public class QueryParserUtils { |
| 55 | |
| 56 | public static String removeQuotes(String str) { |
| 57 | if (str.startsWith("\u005c'") && str.endsWith("\u005c'")) |
| 58 | return str.substring(1, str.length() - 1); |
| 59 | else |
| 60 | return str; |
| 61 | } |
| 62 | |
| 63 | public static void attachStorePlan(String scope, LogicalPlan lp, String fileName, String func, |
| 64 | Operator input, String alias, PigContext pigContext) throws FrontendException { |
no test coverage detected