mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 01:41:59 +00:00
d3517140d9
This reverts commit e5aad4a6fd
.
23 lines
604 B
C++
23 lines
604 B
C++
#pragma once
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// left for backwards compatibility
|
|
enum class KeeperApiVersion : uint8_t
|
|
{
|
|
ZOOKEEPER_COMPATIBLE = 0,
|
|
WITH_FILTERED_LIST,
|
|
WITH_MULTI_READ,
|
|
WITH_CHECK_NOT_EXISTS,
|
|
};
|
|
|
|
const String keeper_system_path = "/keeper";
|
|
const String keeper_api_version_path = keeper_system_path + "/api_version";
|
|
const String keeper_api_feature_flags_path = keeper_system_path + "/feature_flags";
|
|
const String keeper_config_path = keeper_system_path + "/config";
|
|
const String keeper_availability_zone_path = keeper_system_path + "/availability_zone";
|
|
|
|
}
|