You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Zheng Hu (JIRA)" <ji...@apache.org> on 2017/07/18 10:03:00 UTC

[jira] [Updated] (HBASE-18402) Thrift2 should support DeleteFamily and DeleteFamilyVersion type

     [ https://issues.apache.org/jira/browse/HBASE-18402?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zheng Hu updated HBASE-18402:
-----------------------------
    Description: 
Currently,  our thrift2 only support two delete types, Actually, there are four delete types.and  we should support the other delete type:  DeleteFamily and DeleteFamilyVersion. 

{code}
/**
 * Specify type of delete:
 *  - DELETE_COLUMN means exactly one version will be removed,
 *  - DELETE_COLUMNS means previous versions will also be removed.
 */
enum TDeleteType {
  DELETE_COLUMN = 0,
  DELETE_COLUMNS = 1
}
{code} 

  was:
Currently,  our thrift2 only support two delete type, Actually, there are four delete types.and  we should support the other delete type:  DeleteFamily and DeleteFamilyVersion. 

{code}
/**
 * Specify type of delete:
 *  - DELETE_COLUMN means exactly one version will be removed,
 *  - DELETE_COLUMNS means previous versions will also be removed.
 */
enum TDeleteType {
  DELETE_COLUMN = 0,
  DELETE_COLUMNS = 1
}
{code} 


> Thrift2 should support  DeleteFamily and DeleteFamilyVersion type
> -----------------------------------------------------------------
>
>                 Key: HBASE-18402
>                 URL: https://issues.apache.org/jira/browse/HBASE-18402
>             Project: HBase
>          Issue Type: Bug
>          Components: Thrift
>    Affects Versions: 2.0.0-alpha-1
>            Reporter: Zheng Hu
>            Assignee: Zheng Hu
>
> Currently,  our thrift2 only support two delete types, Actually, there are four delete types.and  we should support the other delete type:  DeleteFamily and DeleteFamilyVersion. 
> {code}
> /**
>  * Specify type of delete:
>  *  - DELETE_COLUMN means exactly one version will be removed,
>  *  - DELETE_COLUMNS means previous versions will also be removed.
>  */
> enum TDeleteType {
>   DELETE_COLUMN = 0,
>   DELETE_COLUMNS = 1
> }
> {code} 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)