mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
12 lines
272 B
C++
12 lines
272 B
C++
#include <Common/ClickHouseRevision.h>
|
|
|
|
#if !defined(ARCADIA_BUILD)
|
|
# include <Common/config_version.h>
|
|
#endif
|
|
|
|
namespace ClickHouseRevision
|
|
{
|
|
unsigned getVersionRevision() { return VERSION_REVISION; }
|
|
unsigned getVersionInteger() { return VERSION_INTEGER; }
|
|
}
|