MCPcopy Create free account
hub / github.com/apache/kudu / Delete

Class Delete

java/kudu-client/src/main/java/org/apache/kudu/client/Delete.java:28–40  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

26 * Instances of this class should not be reused.
27 */
28@InterfaceAudience.Public
29@InterfaceStability.Evolving
30public 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}

Callers 2

TEST_PFunction · 0.85
TEST_FFunction · 0.85

Calls

no outgoing calls

Tested by 2

TEST_PFunction · 0.68
TEST_FFunction · 0.68