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:
Zhihong Yu 2011-11-16 01:04:45 +00:00
parent eb5e28e4e1
commit 1ae05e5dd3
2 changed files with 2 additions and 1 deletions

View File

@ -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-4784 Void return types not handled correctly for CoprocessorProtocol
methods
HBASE-4793 HBase shell still using deprecated methods removed in HBASE-4436
TESTS
HBASE-4450 test for number of blocks read: to serve as baseline for expected

View File

@ -332,7 +332,7 @@ module Hbase
# If column already exist, then try to alter it. Create otherwise.
if htd.hasFamily(column_name.to_java_bytes)
@admin.modifyColumn(table_name, column_name, descriptor)
@admin.modifyColumn(table_name, descriptor)
if wait == true
puts "Updating all regions with the new schema..."
alter_status(table_name)