HBASE-739 HBaseAdmin.createTable() using old HTableDescription doesn't work
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@676092 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e6e11eae01
commit
e60307ea31
|
@ -181,6 +181,8 @@ Trunk (unreleased changes)
|
|||
(Jean-Daniel Cryans via Stack)
|
||||
HBASE-740 ThriftServer getting table names incorrectly (Tim Sell via Stack)
|
||||
HBASE-742 Rename getMetainfo in HTable as getTableDescriptor
|
||||
HBASE-739 HBaseAdmin.createTable() using old HTableDescription doesn't work
|
||||
(Izaak Rubin via Stack)
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-559 MR example job to count table rows
|
||||
|
|
|
@ -22,9 +22,13 @@ package org.apache.hadoop.hbase.client;
|
|||
|
||||
import org.apache.hadoop.hbase.HColumnDescriptor;
|
||||
import org.apache.hadoop.hbase.HTableDescriptor;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
|
||||
class UnmodifyableHTableDescriptor extends HTableDescriptor {
|
||||
/**
|
||||
* Read-only table descriptor.
|
||||
* Returned out of {@link HTable.getTableDescriptor}.
|
||||
*/
|
||||
public class UnmodifyableHTableDescriptor extends HTableDescriptor {
|
||||
|
||||
/*
|
||||
* Create an unmodifyable copy of an HTableDescriptor
|
||||
* @param desc
|
||||
|
|
Loading…
Reference in New Issue