return null;
CallStatementNode call = (CallStatementNode)stmt;
StaticMethodCallNode methodCall = (StaticMethodCallNode)call.methodCall().getJavaValueNode();
// This will signal error if undefined, so any special handling of
// non-AIS CALL statements needs to be tested by an earlier generator.
ServerCallInvocation invocation = ServerCallInvocation.of(server, methodCall);
final PostgresStatement pstmt;
switch (invocation.getCallingConvention()) {
case LOADABLE_PLAN:
pstmt = PostgresLoadablePlan.statement(server, invocation);
break;
case SCRIPT_LIBRARY:
throw new CantCallScriptLibraryException(stmt);