Package com.foundationdb.server.explain.std

Examples of com.foundationdb.server.explain.std.NestedLoopsExplainer


    private final boolean pipeline;

    @Override
    public CompoundExplainer getExplainer(ExplainContext context)
    {
        CompoundExplainer ex = new NestedLoopsExplainer(getName(), innerInputOperator, outerInputOperator, null, null, context);
        ex.addAttribute(Label.BINDING_POSITION, PrimitiveExplainer.getInstance(inputBindingPosition));
        ex.addAttribute(Label.PIPELINE, PrimitiveExplainer.getInstance(pipeline));
        ex.addAttribute(Label.DEPTH, PrimitiveExplainer.getInstance(depth));
        if (context.hasExtraInfo(this))
            ex.get().putAll(context.getExtraInfo(this).get());
        return ex;
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.explain.std.NestedLoopsExplainer

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.