Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.98.5
-
None
-
Reviewed
Description
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.