MCPcopy Create free account
hub / github.com/apache/pig / buildLp

Method buildLp

test/org/apache/pig/test/Util.java:1160–1167  ·  view source on GitHub ↗
(PigServer pigServer, String query)

Source from the content-addressed store, hash-verified

1158 }
1159
1160 public static LogicalPlan buildLp(PigServer pigServer, String query)
1161 throws Exception {
1162 pigServer.setBatchOn();
1163 pigServer.registerQuery( query );
1164 java.lang.reflect.Method buildLp = pigServer.getClass().getDeclaredMethod("buildLp");
1165 buildLp.setAccessible(true);
1166 return (LogicalPlan ) buildLp.invoke( pigServer );
1167 }
1168
1169 public static PhysicalPlan buildPp(PigServer pigServer, String query)
1170 throws Exception {

Calls 4

getClassMethod · 0.80
invokeMethod · 0.80
setBatchOnMethod · 0.45
registerQueryMethod · 0.45

Tested by

no test coverage detected