Package org.voltdb.planner.ParsedSelectStmt

Examples of org.voltdb.planner.ParsedSelectStmt.ParsedColInfo


            Map <AbstractExpression, Integer> aggTableIndexMap,
            Map <Integer, ParsedColInfo> indexToColumnMap)
    {
        Integer ii = aggTableIndexMap.get(this);
        if (ii != null) {
            ParsedColInfo col = indexToColumnMap.get(ii);
            TupleValueExpression tve = new TupleValueExpression(
                    col.tableName, col.tableAlias, col.columnName, col.alias, ii);
            tve.setTypeSizeBytes(getValueType(), getValueSize(), getInBytes());

            // To prevent pushdown of LIMIT when ORDER BY references an agg. ENG-3487.
View Full Code Here

TOP

Related Classes of org.voltdb.planner.ParsedSelectStmt.ParsedColInfo

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.