Guangxu Cheng created HBASE-18149:
-------------------------------------

             Summary: The setting rules for table-scope attributes and 
family-scope attributes should keep consistent
                 Key: HBASE-18149
                 URL: https://issues.apache.org/jira/browse/HBASE-18149
             Project: HBase
          Issue Type: Bug
          Components: shell
    Affects Versions: 1.2.5, 2.0.0
            Reporter: Guangxu Cheng
            Assignee: Guangxu Cheng


I use the following command to create a table.

{code}
hbase(main):030:0> create 't3',{NAME => 'f2', BLOCKCACHE => false}, 
{COMPACTION_ENABLED => false}
An argument ignored (unknown or overridden): COMPACTION_ENABLED
0 row(s) in 1.1390 seconds

hbase(main):031:0> describe 't3'
Table t3 is ENABLED
t3                                                                              
                                                                                
                             
COLUMN FAMILIES DESCRIPTION                                                     
                                                                                
                             
{NAME => 'f2', BLOOMFILTER => 'ROW', VERSIONS => '1', IN_MEMORY => 'false', 
KEEP_DELETED_CELLS => 'FALSE', DATA_BLOCK_ENCODING => 'NONE', TTL => 'FOREVER', 
COMPRESSION => 'NONE', MIN_VERSIONS => '0', BLOCKCACHE => 'false', BLOCKSIZE => 
'65536', REPLICATION_SCOPE => '0'}
1 row(s) in 0.0720 seconds
{code}

*BLOCKCACHE* was in effect but *COMPACTION_ENABLED* didn't take effect.
After checking code, I found that if the table-scope attributes value is false, 
you need to enclose 'false' in single quotation marks while family-scope is not 
required.
so we should keep the consistent logic for table-scope and family-scope.
the command alter also have the same problem.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to