-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 0.98.5
-
Component/s: None
-
Labels:
-
Hadoop Flags:Reviewed
public Mutation beforeMutate(long rowkeyBase, Mutation m) throws IOException { if (!(m instanceof Delete)) { m.setCellVisibility(new CellVisibility(this.visibilityExps[(int) rowkeyBase % this.visibilityExps.length])); } return m; }
Now we have delete CellVisibility matching and so we should add CellVisibility for Mutations also. Just removing the if check part will solve the issue.