mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
/* Copyright Abandoned 1996, 1999, 2001 MySQL AB
|
|
This file is public domain and comes with NO WARRANTY of any kind */
|
|
|
|
/* Version numbers for protocol & mysqld */
|
|
|
|
#ifndef _mariadb_version_h_
|
|
#define _mariadb_version_h_
|
|
|
|
#ifdef _CUSTOMCONFIG_
|
|
#include <custom_conf.h>
|
|
#else
|
|
#define PROTOCOL_VERSION 10
|
|
#define MARIADB_CLIENT_VERSION_STR "10.3.6"
|
|
#define MARIADB_BASE_VERSION "mariadb-10.3"
|
|
#define MARIADB_VERSION_ID 100306
|
|
#define MYSQL_VERSION_ID 100306
|
|
#define MARIADB_PORT 3306
|
|
#define MARIADB_UNIX_ADDR "/var/run/mysqld/mysqld.sock"
|
|
#define MYSQL_CONFIG_NAME "my"
|
|
|
|
#define MARIADB_PACKAGE_VERSION "3.0.6"
|
|
#define MARIADB_PACKAGE_VERSION_ID 30006
|
|
#define MARIADB_SYSTEM_TYPE "Linux"
|
|
#define MARIADB_MACHINE_TYPE "x86_64"
|
|
#define MARIADB_PLUGINDIR "lib/mariadb/plugin"
|
|
|
|
/* mysqld compile time options */
|
|
#ifndef MYSQL_CHARSET
|
|
#define MYSQL_CHARSET ""
|
|
#endif
|
|
#endif
|
|
|
|
/* Source information */
|
|
#define CC_SOURCE_REVISION "a0fd36cc5a5313414a5a2ebe9322577a29b4782a"
|
|
|
|
#endif /* _mariadb_version_h_ */
|