ClickHouse/src/Parsers/SyncReplicaMode.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
144 B
C++
Raw Normal View History

2023-03-27 23:39:36 +00:00
#pragma once
2023-03-31 14:09:00 +00:00
#include <cstdint>
2023-03-27 23:39:36 +00:00
namespace DB
{
2023-03-31 14:09:00 +00:00
enum class SyncReplicaMode : uint8_t
2023-03-27 23:39:36 +00:00
{
DEFAULT,
STRICT,
LIGHTWEIGHT,
PULL,
};
}