Package com.foundationdb.server.types.texpressions

Examples of com.foundationdb.server.types.texpressions.ScalarSubqueryTExpression


    public static ExpressionGenerator scalarSubquery(final Operator innerPlan, final ExpressionGenerator expression, final RowType outer, final RowType inner, final int pos) {
        return new ExpressionGenerator() {
            @Override
            public TPreparedExpression getTPreparedExpression() {
                return new ScalarSubqueryTExpression(innerPlan, expression.getTPreparedExpression(), outer, inner, pos);
            }
        };
    }
View Full Code Here


        }
       
        protected TPreparedExpression scalarSubqueryExpression(Operator operator, TPreparedExpression innerExpression,
                                                               RowType outerRowType, RowType innerRowType,
                                                               int bindingPosition) {
            return new ScalarSubqueryTExpression(operator, innerExpression, outerRowType, innerRowType, bindingPosition);
        }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.types.texpressions.ScalarSubqueryTExpression

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.