Author: stack
Date: Mon Apr 25 17:40:09 2011
New Revision: 1096537
URL: http://svn.apache.org/viewvc?rev=1096537&view=rev
Log:
HBASE-3817 HBase Shell has an issue accepting FILTER for the 'scan' command.
Modified:
hbase/branches/0.90/CHANGES.txt
hbase/branches/0.90/src/main/ruby/hbase.rb
Modified: hbase/branches/0.90/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1096537&r1=1096536&r2=1096537&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Mon Apr 25 17:40:09 2011
@@ -26,6 +26,8 @@ Release 0.90.3 - Unreleased
HBASE-3781 hbase shell cannot start "NoMethodError: undefined method
`close' for nil:NilClass" (Mikael Sitruk)
HBASE-3800 HMaster is not able to start due to AlreadyCreatedException
+ HBASE-3817 HBase Shell has an issue accepting FILTER for the 'scan' command
+ (Harsh J Chouraria)
IMPROVEMENT
HBASE-3717 deprecate HTable isTableEnabled() methods in favor of HBaseAdmin
Modified: hbase/branches/0.90/src/main/ruby/hbase.rb
URL:
http://svn.apache.org/viewvc/hbase/branches/0.90/src/main/ruby/hbase.rb?rev=1096537&r1=1096536&r2=1096537&view=diff
==============================================================================
--- hbase/branches/0.90/src/main/ruby/hbase.rb (original)
+++ hbase/branches/0.90/src/main/ruby/hbase.rb Mon Apr 25 17:40:09 2011
@@ -50,6 +50,7 @@ module HBaseConstants
REPLICATION_SCOPE = "REPLICATION_SCOPE"
INTERVAL = 'INTERVAL'
CACHE = 'CACHE'
+ FILTER = 'FILTER'
# Load constants from hbase java API
def self.promote_constants(constants)