HBASE-4793 HBase shell still using deprecated methods removed in HBASE-4436
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1202493 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eb5e28e4e1
commit
1ae05e5dd3
|
@ -430,6 +430,7 @@ Release 0.92.0 - Unreleased
|
||||||
HBASE-4775 Remove -ea from all but tests; enable it if you need it testing
|
HBASE-4775 Remove -ea from all but tests; enable it if you need it testing
|
||||||
HBASE-4784 Void return types not handled correctly for CoprocessorProtocol
|
HBASE-4784 Void return types not handled correctly for CoprocessorProtocol
|
||||||
methods
|
methods
|
||||||
|
HBASE-4793 HBase shell still using deprecated methods removed in HBASE-4436
|
||||||
|
|
||||||
TESTS
|
TESTS
|
||||||
HBASE-4450 test for number of blocks read: to serve as baseline for expected
|
HBASE-4450 test for number of blocks read: to serve as baseline for expected
|
||||||
|
|
|
@ -332,7 +332,7 @@ module Hbase
|
||||||
|
|
||||||
# If column already exist, then try to alter it. Create otherwise.
|
# If column already exist, then try to alter it. Create otherwise.
|
||||||
if htd.hasFamily(column_name.to_java_bytes)
|
if htd.hasFamily(column_name.to_java_bytes)
|
||||||
@admin.modifyColumn(table_name, column_name, descriptor)
|
@admin.modifyColumn(table_name, descriptor)
|
||||||
if wait == true
|
if wait == true
|
||||||
puts "Updating all regions with the new schema..."
|
puts "Updating all regions with the new schema..."
|
||||||
alter_status(table_name)
|
alter_status(table_name)
|
||||||
|
|
Loading…
Reference in New Issue