Class of Operation for whole row removals. Only columns which are part of the key can be set. Instances of this class should not be reused.
| 26 | * Instances of this class should not be reused. |
| 27 | */ |
| 28 | @InterfaceAudience.Public |
| 29 | @InterfaceStability.Evolving |
| 30 | public class Delete extends Operation { |
| 31 | |
| 32 | Delete(KuduTable table) { |
| 33 | super(table); |
| 34 | } |
| 35 | |
| 36 | @Override |
| 37 | ChangeType getChangeType() { |
| 38 | return ChangeType.DELETE; |
| 39 | } |
| 40 | } |