apache/accumulo

Add prettyPrint function to ConditionalMutation

keith-turner opened this issue · 0 comments

Is your feature request related to a problem? Please describe.
Mutation has a prettyPrint function and ConditionalMutation does not (it does, but only what is inherited from mutation).

Describe the solution you'd like

Add prettyPrint function to ConditionalMuation that adds informaiton about conditions like the following.

public String prettyPrint() {
   StringBuilder sb = new StringBuilder(super.prettyPrint());
   // TODO append information about conditions
  return sb.toString();