mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-22 07:42:16 +00:00
16 lines
247 B
C++
16 lines
247 B
C++
/*
|
|
* Copyright 2016-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
class clustering_key_prefix {
|
|
std::vector<bytes> explode();
|
|
};
|
|
|
|
class partition_key {
|
|
std::vector<bytes> explode();
|
|
};
|