Package com.netflix.lipstick.model.operators

Examples of com.netflix.lipstick.model.operators.P2jLOSplitOutput


     * @param node the LOSplitOutput to adapt to P2jLOSplitOutput
     * @param lp the logical plan containing node
     * @throws FrontendException
     */
    public LOSplitOutputJsonAdaptor(LOSplitOutput node, LogicalPlan lp) throws FrontendException {
        super(node, new P2jLOSplitOutput(), lp);
        ((P2jLOSplitOutput) p2j).setExpression(LogicalExpressionPlanSerializer.serialize(node.getFilterPlan()));
    }
View Full Code Here


        Assert.assertEquals(store.getStorageFunction(), funcList[funcList.length - 1]);
    }

    private void verifySplitAdaptor(LOSplitOutputJsonAdaptor adaptor, LOSplitOutput lro) {
        Assert.assertTrue(adaptor.getToP2jOperator() instanceof P2jLOSplitOutput);
        P2jLOSplitOutput split = (P2jLOSplitOutput) adaptor.getToP2jOperator();
        Assert.assertEquals(split.getExpression(), LogicalExpressionPlanSerializer.serialize(lro.getFilterPlan()));
    }
View Full Code Here

TOP

Related Classes of com.netflix.lipstick.model.operators.P2jLOSplitOutput

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.