Package org.apache.hadoop.hbase.hbql.impl

Examples of org.apache.hadoop.hbase.hbql.impl.InvalidColumnException


    public Object getValue(final HConnectionImpl conn, final Object object) throws HBqlException,
                                                                                   ResultMissingColumnException,
                                                                                   NullColumnValueException {

        if (!this.isVariableDefinedInMapping())
            throw new InvalidColumnException(this.getVariableName());

        return this.getTypedColumn().getValue(conn, object);
    }
View Full Code Here


    }

    public Class<? extends GenericValue> validateTypes(final GenericValue parentExpr,
                                                       final boolean allowCollections) throws HBqlException {
        if (!this.isVariableDefinedInMapping())
            throw new InvalidColumnException(this.getVariableName());

        return this.getTypedColumn().validateTypes(parentExpr, allowCollections);
    }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.hbql.impl.InvalidColumnException

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.