| 1 | /* Copyright Abandoned 1996,1999 TCX DataKonsult AB & Monty Program KB |
| 2 | & Detron HB, 1996, 1999-2004, 2007 MySQL AB. |
| 3 | This file is public domain and comes with NO WARRANTY of any kind |
| 4 | */ |
| 5 | |
| 6 | /* Version numbers for protocol & mysqld */ |
| 7 | |
| 8 | #ifndef _mysql_version_h |
| 9 | #define _mysql_version_h |
| 10 | #ifdef _CUSTOMCONFIG_ |
| 11 | #include <custom_conf.h> |
| 12 | #else |
| 13 | #define PROTOCOL_VERSION 10 |
| 14 | #define MYSQL_SERVER_VERSION "10.3.7-MariaDB" |
| 15 | #define MYSQL_BASE_VERSION "mysqld-10.3" |
| 16 | #define MARIADB_BASE_VERSION "mariadb-10.3" |
| 17 | #define MYSQL_SERVER_SUFFIX_DEF "" |
| 18 | #define FRM_VER 6 |
| 19 | #define MYSQL_VERSION_ID 100307 |
| 20 | #define MYSQL_PORT 3306 |
| 21 | #define MYSQL_PORT_DEFAULT 0 |
| 22 | #define MYSQL_UNIX_ADDR "/tmp/mysql.sock" |
| 23 | #define MYSQL_CONFIG_NAME "my" |
| 24 | #define "Source distribution" |
| 25 | #define SERVER_MATURITY_LEVEL MariaDB_PLUGIN_MATURITY_GAMMA |
| 26 | |
| 27 | #ifdef WITH_WSREP |
| 28 | #define WSREP_PATCH_VERSION "wsrep_25.23" |
| 29 | #endif |
| 30 | |
| 31 | /* mysqld compile time options */ |
| 32 | #endif /* _CUSTOMCONFIG_ */ |
| 33 | |
| 34 | #ifndef LICENSE |
| 35 | #define LICENSE GPL |
| 36 | #endif /* LICENSE */ |
| 37 | |
| 38 | #endif /* _mysql_version_h */ |
| 39 | |