mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-24 00:32:15 +00:00
20 lines
239 B
C++
20 lines
239 B
C++
/*
|
|
* Copyright 2024-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
|
|
namespace sstables {
|
|
|
|
enum class sstable_state : uint8_t {
|
|
normal,
|
|
staging,
|
|
quarantine,
|
|
upload,
|
|
};
|
|
|
|
}
|