public static interface Mutation.DeleteOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getKeySet()
public abstract KeySet getKeySet()
Required. The primary keys of the rows within table to delete. The
primary keys must be specified in the order in which they appear in the
PRIMARY KEY()
clause of the table's equivalent DDL statement (the DDL
statement used to create the table).
Delete is idempotent. The transaction will succeed even if some or all
rows do not exist.
.google.spanner.v1.KeySet key_set = 2;
Type | Description |
KeySet | The keySet. |
getKeySetOrBuilder()
public abstract KeySetOrBuilder getKeySetOrBuilder()
Required. The primary keys of the rows within table to delete. The
primary keys must be specified in the order in which they appear in the
PRIMARY KEY()
clause of the table's equivalent DDL statement (the DDL
statement used to create the table).
Delete is idempotent. The transaction will succeed even if some or all
rows do not exist.
.google.spanner.v1.KeySet key_set = 2;
Type | Description |
KeySetOrBuilder |
getTable()
public abstract String getTable()
Required. The table whose rows will be deleted.
string table = 1;
Type | Description |
String | The table. |
getTableBytes()
public abstract ByteString getTableBytes()
Required. The table whose rows will be deleted.
string table = 1;
Type | Description |
ByteString | The bytes for table. |
hasKeySet()
public abstract boolean hasKeySet()
Required. The primary keys of the rows within table to delete. The
primary keys must be specified in the order in which they appear in the
PRIMARY KEY()
clause of the table's equivalent DDL statement (the DDL
statement used to create the table).
Delete is idempotent. The transaction will succeed even if some or all
rows do not exist.
.google.spanner.v1.KeySet key_set = 2;
Type | Description |
boolean | Whether the keySet field is set. |