Map<OperatorKey, LogicalOperator> opTable,
Map<String, LogicalOperator> aliasOp, int start)
throws IOException, ParseException {
ByteArrayInputStream in = new ByteArrayInputStream(query.getBytes());
//QueryParser parser = new QueryParser(in, pigContext, scope, aliases, opTable);
QueryParser parser = new QueryParser(in, pigContext, scope, aliases, opTable, aliasOp, start);
return parser.Parse();
}