Package com.foundationdb.sql.server

Examples of com.foundationdb.sql.server.ServerCallExplainer


                 PrimitiveExplainer.getInstance(invoker.getFunctionName()));
        if (library.isCompiled())
            atts.put(Label.PROCEDURE_IMPLEMENTATION,
                     PrimitiveExplainer.getInstance("compiled"));
        pool.put(invoker, true);       
        return new ServerCallExplainer(getInvocation(), atts, context);
    }
View Full Code Here


                     PrimitiveExplainer.getInstance("compiled"));
        if (evaluator.isShared())
            atts.put(Label.PROCEDURE_IMPLEMENTATION,
                     PrimitiveExplainer.getInstance("shared"));
        pool.put(evaluator, true);       
        return new ServerCallExplainer(getInvocation(), atts, context);
    }
View Full Code Here

                @Override
                public CompoundExplainer getExplainer(ExplainContext context) {
                    Attributes atts = new Attributes();
                    atts.put(Label.PROCEDURE_IMPLEMENTATION,
                             PrimitiveExplainer.getInstance(loadablePlan.getClass().getName()));
                    return new ServerCallExplainer(invocation, atts, context);
                }
            };
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.sql.server.ServerCallExplainer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.