aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Common/BridgeProtocolVersion.h
blob: 77d094fce3f2e41db52b1a02171ce23cd8e38d54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <cstddef>

namespace DB
{

// Version of protocol between clickhouse-server and clickhouse-library-bridge. Increment if you change it in a non-compatible way.
static constexpr size_t LIBRARY_BRIDGE_PROTOCOL_VERSION = 1;

// Version of protocol between clickhouse-server and clickhouse-xdbc-bridge. Increment if you change it in a non-compatible way.
static constexpr size_t XDBC_BRIDGE_PROTOCOL_VERSION = 1;

}