Package org.apache.hadoop.hbase.hbql.statement.select

Examples of org.apache.hadoop.hbase.hbql.statement.select.SimpleExpressionContext


    public ExecutionResults execute(HConnectionImpl connection) throws HBqlException {

        final ExecutionResults retval = new ExecutionResults("Parsed successfully");

        if (this.getGenericValue() != null) {
            final SimpleExpressionContext expr = new SimpleExpressionContext(this.getGenericValue());
            expr.validate();
            final Object val = expr.getValue(connection);
            retval.out.println(this.getGenericValue().asString() + " = " + val);
        }

        return retval;
    }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.hbql.statement.select.SimpleExpressionContext

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.