mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
03b0179af9
More DBUG info for replication Better error messages from replication Fixed bug in replication code when connecting to 'localhost' (time was not released properly) Block ALARM signal on Linux for signal handler thread (Fixes problem with running mysqld with --debug) Removed warning when setting an AUTO_INCREMENT field to NULL
27 lines
829 B
C
27 lines
829 B
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 _mysql_version_h
|
|
#define _mysql_version_h
|
|
#ifdef _CUSTOMCONFIG_
|
|
#include <custom_conf.h>
|
|
#else
|
|
#define PROTOCOL_VERSION @PROTOCOL_VERSION@
|
|
#define MYSQL_SERVER_VERSION "@VERSION@"
|
|
#ifndef MYSQL_SERVER_SUFFIX
|
|
#define MYSQL_SERVER_SUFFIX "@MYSQL_SERVER_SUFFIX@"
|
|
#endif
|
|
#define FRM_VER @DOT_FRM_VERSION@
|
|
#define MYSQL_VERSION_ID @MYSQL_VERSION_ID@
|
|
#define MYSQL_PORT @MYSQL_TCP_PORT@
|
|
#define MYSQL_UNIX_ADDR "@MYSQL_UNIX_ADDR@"
|
|
#define MYSQL_CONFIG_NAME "my"
|
|
|
|
/* mysqld compile time options */
|
|
#ifndef MYSQL_CHARSET
|
|
#define MYSQL_CHARSET "@default_charset@"
|
|
#endif /* MYSQL_CHARSET */
|
|
#endif /* _CUSTOMCONFIG_ */
|
|
#endif /* _mysql_version_h */
|