Package org.apache.hadoop.hbase.hbql.mapping

Examples of org.apache.hadoop.hbase.hbql.mapping.TableMapping.asString()


        final TableMapping tableMapping = this.getMappingContext().getTableMapping();

        if (tableMapping == null)
            return new ExecutionResults("Unknown mapping: " + this.getMappingContext().getMappingName());
        else
            return new ExecutionResults(tableMapping.asString());
    }

    public static String usage() {
        return "DESCRIBE MAPPING mapping_name";
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.