Package org.apache.cassandra.cql.common

Examples of org.apache.cassandra.cql.common.SuperColumnMapExpr


        if (type != CqlParser.A_SUPERCOLUMN_MAP_VALUE)
        {
            throw new SemanticException(CompilerErrorMsg.INVALID_TYPE.getMsg(ast));
        }
        int size = ast.getChildCount();
        SuperColumnMapExpr result = new SuperColumnMapExpr();
        for (int idx = 0; idx < size; idx++)
        {
            CommonTree entryNode = (CommonTree)(ast.getChild(idx));
            OperandDef    superColumnKey = getSimpleExpr((CommonTree)(entryNode.getChild(0)));
            ColumnMapExpr columnMapExpr  = getColumnMapExpr((CommonTree)(entryNode.getChild(1)));           

            Pair<OperandDef, ColumnMapExpr> entry = new Pair<OperandDef, ColumnMapExpr>(superColumnKey, columnMapExpr);
            result.add(entry);
        }
        return result;
    }
View Full Code Here


            }
            else
            {
                // Case: set table.super_cf['key'] = <super_column_map>;
                logger_.assertLog(dimensionCnt == 0, "invalid dimensionCnt: " + dimensionCnt);
                SuperColumnMapExpr superColumnMapExpr = getSuperColumnMapExpr(valueNode);               
                plan = new SetSuperColumnMap(cfMetaData, rowKey, superColumnMapExpr);
            }
        }
        else  // Standard column family
        {
View Full Code Here

TOP

Related Classes of org.apache.cassandra.cql.common.SuperColumnMapExpr

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.