The KeySet
class is a regular type that represents a collection of Key
s.
Users can construct a KeySet
instance, then add Key
s and ranges of Key
s to the set. The caller is responsible for ensuring that all keys in a given KeySet
instance contain the same number and types of values.
Users may also optionally construct an instance that represents all keys with KeySet::All()
.
Example
auto delete_albums = spanner::DeleteMutationBuilder(
"Albums", spanner::KeySet()
.AddKey(spanner::MakeKey(2, 1))
.AddKey(spanner::MakeKey(2, 3)))
.Build();
Example
void DeleteAll(google::cloud::spanner::Client client) {
namespace spanner = ::google::cloud::spanner;
// Delete all the performances, venues, albums and singers.
auto commit = client.Commit(spanner::Mutations{
spanner::MakeDeleteMutation("Performances", spanner::KeySet::All()),
spanner::MakeDeleteMutation("Venues", spanner::KeySet::All()),
spanner::MakeDeleteMutation("Albums", spanner::KeySet::All()),
spanner::MakeDeleteMutation("Singers", spanner::KeySet::All()),
});
if (!commit) throw std::move(commit).status();
std::cout << "delete-all was successful\n";
}
Constructors
KeySet()
KeySet(KeySet const &)
Parameter |
Name |
Description |
|
KeySet const &
|
KeySet(KeySet &&)
Parameter |
Name |
Description |
|
KeySet &&
|
Operators
operator=(KeySet const &)
Parameter |
Name |
Description |
|
KeySet const &
|
Returns |
Type |
Description |
KeySet & |
|
operator=(KeySet &&)
Parameter |
Name |
Description |
|
KeySet &&
|
Returns |
Type |
Description |
KeySet & |
|
Functions
static All()
Returns a KeySet
that represents the set of "All" keys for the index.
Example
void DeleteAll(google::cloud::spanner::Client client) {
namespace spanner = ::google::cloud::spanner;
// Delete all the performances, venues, albums and singers.
auto commit = client.Commit(spanner::Mutations{
spanner::MakeDeleteMutation("Performances", spanner::KeySet::All()),
spanner::MakeDeleteMutation("Venues", spanner::KeySet::All()),
spanner::MakeDeleteMutation("Albums", spanner::KeySet::All()),
spanner::MakeDeleteMutation("Singers", spanner::KeySet::All()),
});
if (!commit) throw std::move(commit).status();
std::cout << "delete-all was successful\n";
}
Returns |
Type |
Description |
KeySet |
|
AddKey(Key)
Adds the given key
to the KeySet
.
Example
auto delete_albums = spanner::DeleteMutationBuilder(
"Albums", spanner::KeySet()
.AddKey(spanner::MakeKey(2, 1))
.AddKey(spanner::MakeKey(2, 3)))
.Build();
Parameter |
Name |
Description |
key |
Key
|
Returns |
Type |
Description |
KeySet & |
|
AddRange(KeyBound, KeyBound)
Adds a range of keys defined by the given KeyBound
s.
Example
auto delete_albums = spanner::DeleteMutationBuilder(
"Albums", spanner::KeySet()
.AddKey(spanner::MakeKey(2, 1))
.AddKey(spanner::MakeKey(2, 3)))
.Build();
Parameters |
Name |
Description |
start |
KeyBound
|
end |
KeyBound
|
Returns |
Type |
Description |
KeySet & |
|