mysql_version.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  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. /* Version numbers for protocol & mysqld */
  6. #ifndef _mysql_version_h
  7. #define _mysql_version_h
  8. #define PROTOCOL_VERSION 10
  9. #define MYSQL_SERVER_VERSION "8.0.29"
  10. #define MYSQL_BASE_VERSION "mysqld-8.0"
  11. #define MYSQL_SERVER_SUFFIX_DEF ""
  12. #define MYSQL_VERSION_ID 80029
  13. #define MYSQL_PORT 3306
  14. #define MYSQL_ADMIN_PORT 33062
  15. #define MYSQL_PORT_DEFAULT 0
  16. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  17. #define MYSQL_CONFIG_NAME "my"
  18. #define MYSQL_PERSIST_CONFIG_NAME "mysqld-auto"
  19. #define MYSQL_COMPILATION_COMMENT "MySQL Community - GPL"
  20. #define MYSQL_COMPILATION_COMMENT_SERVER "MySQL Community Server - GPL"
  21. #define LIBMYSQL_VERSION "8.0.29"
  22. #define LIBMYSQL_VERSION_ID 80029
  23. #ifndef LICENSE
  24. #define LICENSE GPL
  25. #endif /* LICENSE */
  26. #endif /* _mysql_version_h */