101102103104105106107108
protected void visit(LOSort s) throws VisitorException { try { s.getSchema(); super.visit(s); } catch (FrontendException fe) { throw new VisitorException(fe); } }
116117118119120121122123
protected void visit(LOLimit limit) throws VisitorException { try { limit.getSchema(); super.visit(limit); } catch (FrontendException fe) { throw new VisitorException(fe); } }
131132133134135136137138
protected void visit(LOFilter filter) throws VisitorException { try { filter.getSchema(); super.visit(filter); } catch (FrontendException fe) { throw new VisitorException(fe); } }
146147148149150151152153
protected void visit(LOSplit split) throws VisitorException { try { split.getSchema(); super.visit(split); } catch (FrontendException fe) { throw new VisitorException(fe); } }
161162163164165166167168
protected void visit(LOForEach forEach) throws VisitorException { try { super.visit(forEach); forEach.getSchema(); } catch (FrontendException fe) { throw new VisitorException(fe); } }
177178179180181182183184
protected void visit(LOUserFunc func) throws VisitorException { try { func.getFieldSchema(); super.visit(func); } catch (FrontendException fe) { throw new VisitorException(fe); } }
191192193194195196197198
protected void visit(LOBinCond binCond) throws VisitorException { try { binCond.getFieldSchema(); super.visit(binCond); } catch (FrontendException fe) { throw new VisitorException(fe); } }
206207208209210211212213
protected void visit(LOCast cast) throws VisitorException { try { cast.getFieldSchema(); super.visit(cast); } catch (FrontendException fe) { throw new VisitorException(fe); } }
221222223224225226227228
protected void visit(LORegexp regexp) throws VisitorException { try { regexp.getFieldSchema(); super.visit(regexp); } catch (FrontendException fe) { throw new VisitorException(fe); } }
230231232233234235236237
protected void visit(LOLoad load) throws VisitorException{ try { load.getSchema(); super.visit(load); } catch (FrontendException fe) { throw new VisitorException(fe); } }