Package org.apache.phoenix.expression

Examples of org.apache.phoenix.expression.ColumnExpression


    private int colPrecision;
    private int colScale;

    public BaseDecimalStddevAggregator(List<Expression> exps, SortOrder sortOrder) {
        super(sortOrder);
        ColumnExpression stdDevColExp = (ColumnExpression)exps.get(0);
        this.colPrecision = stdDevColExp.getMaxLength();
        this.colScale = stdDevColExp.getScale();
    }
View Full Code Here


    private int colPrecision;
    private int colScale;

    public BaseDecimalStddevAggregator(List<Expression> exps, ColumnModifier columnModifier) {
        super(columnModifier);
        ColumnExpression stdDevColExp = (ColumnExpression)exps.get(0);
        this.colPrecision = stdDevColExp.getMaxLength();
        this.colScale = stdDevColExp.getScale();
    }
View Full Code Here

TOP

Related Classes of org.apache.phoenix.expression.ColumnExpression

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.