HBASE-11510 Visibility serialization format tag gets duplicated in Append/Increment'ed cells. (Anoop)
This commit is contained in:
parent
69a75bbc0e
commit
93e7ec42d1
|
@ -1236,7 +1236,8 @@ public class VisibilityController extends BaseRegionObserver implements MasterOb
|
|||
newCell.getTagsLength());
|
||||
while (tagsItr.hasNext()) {
|
||||
Tag tag = tagsItr.next();
|
||||
if (tag.getType() != VisibilityUtils.VISIBILITY_TAG_TYPE) {
|
||||
if (tag.getType() != VisibilityUtils.VISIBILITY_TAG_TYPE
|
||||
&& tag.getType() != VisibilityUtils.VISIBILITY_EXP_SERIALIZATION_TAG_TYPE) {
|
||||
tags.add(tag);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue