mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Merge pull request #25771 from azat/version-revision-comment
Add comments for VERSION_REVISION vs DBMS_TCP_PROTOCOL_VERSION
This commit is contained in:
commit
2b3d50f0e6
@ -1,4 +1,7 @@
|
|||||||
# This strings autochanged from release_lib.sh:
|
# This variables autochanged by release_lib.sh:
|
||||||
|
|
||||||
|
# NOTE: has nothing common with DBMS_TCP_PROTOCOL_VERSION,
|
||||||
|
# only DBMS_TCP_PROTOCOL_VERSION should be incremented on protocol changes.
|
||||||
SET(VERSION_REVISION 54453)
|
SET(VERSION_REVISION 54453)
|
||||||
SET(VERSION_MAJOR 21)
|
SET(VERSION_MAJOR 21)
|
||||||
SET(VERSION_MINOR 8)
|
SET(VERSION_MINOR 8)
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
// .h autogenerated by cmake!
|
// .h autogenerated by cmake!
|
||||||
|
|
||||||
|
// NOTE: has nothing common with DBMS_TCP_PROTOCOL_VERSION,
|
||||||
|
// only DBMS_TCP_PROTOCOL_VERSION should be incremented on protocol changes.
|
||||||
#cmakedefine VERSION_REVISION @VERSION_REVISION@
|
#cmakedefine VERSION_REVISION @VERSION_REVISION@
|
||||||
#cmakedefine VERSION_NAME "@VERSION_NAME@"
|
#cmakedefine VERSION_NAME "@VERSION_NAME@"
|
||||||
#define DBMS_NAME VERSION_NAME
|
#define DBMS_NAME VERSION_NAME
|
||||||
|
@ -85,7 +85,13 @@
|
|||||||
|
|
||||||
#define DBMS_MIN_PROTOCOL_VERSION_WITH_DISTRIBUTED_DEPTH 54448
|
#define DBMS_MIN_PROTOCOL_VERSION_WITH_DISTRIBUTED_DEPTH 54448
|
||||||
|
|
||||||
/// Version of ClickHouse TCP protocol. Increment it manually when you change the protocol.
|
/// Version of ClickHouse TCP protocol.
|
||||||
|
///
|
||||||
|
/// Should be incremented manually on protocol changes.
|
||||||
|
///
|
||||||
|
/// NOTE: DBMS_TCP_PROTOCOL_VERSION has nothing common with VERSION_REVISION,
|
||||||
|
/// later is just a number for server version (one number instead of commit SHA)
|
||||||
|
/// for simplicity (sometimes it may be more convenient in some use cases).
|
||||||
#define DBMS_TCP_PROTOCOL_VERSION 54449
|
#define DBMS_TCP_PROTOCOL_VERSION 54449
|
||||||
|
|
||||||
#define DBMS_MIN_PROTOCOL_VERSION_WITH_INITIAL_QUERY_START_TIME 54449
|
#define DBMS_MIN_PROTOCOL_VERSION_WITH_INITIAL_QUERY_START_TIME 54449
|
||||||
|
Loading…
Reference in New Issue
Block a user