aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Parsers/SyncReplicaMode.h
blob: 6b19eb57fdc20ea0bc8370f4cd6709b08eb2f567 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include <cstdint>

namespace DB
{
enum class SyncReplicaMode : uint8_t
{
    DEFAULT,
    STRICT,
    LIGHTWEIGHT,
    PULL,
};
}