Package operators

Examples of operators.GeneralJoinOperator


    @Override
    public Result execute() {
        Result inResult1 = getInputTerm1().execute();
        Result inResult2 = getInputTerm2().execute();
        GeneralJoinOperator oper = new GeneralJoinOperator(Utils.getCaf(), inResult1.getResultRelation(), inResult2.getResultRelation(), predicate);
        inResult1.extend(inResult2);
        inResult1.extend(oper);
        storeResult(inResult1);
        return inResult1;
    }
View Full Code Here

TOP

Related Classes of operators.GeneralJoinOperator

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.