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
11#define PROTOCOL_VERSION 10
12#define MYSQL_SERVER_VERSION "8.0.36"
13#define MYSQL_BASE_VERSION "mysqld-8.0"
14#define MYSQL_SERVER_SUFFIX_DEF "-0ubuntu0.22.04.1"
15#define MYSQL_VERSION_ID 80036
16#define MYSQL_VERSION_STABILITY "LTS"
17#define MYSQL_PORT 3306
18#define MYSQL_ADMIN_PORT 33062
19#define MYSQL_PORT_DEFAULT 0
20#define MYSQL_UNIX_ADDR "/var/run/mysqld/mysqld.sock"
21#define MYSQL_CONFIG_NAME "my"
22#define MYSQL_PERSIST_CONFIG_NAME "mysqld-auto"
23#define MYSQL_COMPILATION_COMMENT "(Ubuntu)"
24#define MYSQL_COMPILATION_COMMENT_SERVER "(Ubuntu)"
25#define LIBMYSQL_VERSION "8.0.36"
26#define LIBMYSQL_VERSION_ID 80036
27
28#ifndef LICENSE
29#define LICENSE GPL
30#endif /* LICENSE */
31
32#endif /* _mysql_version_h */
33

source code of include/mysql/mysql_version.h