Clone of PhatAC @ https://github.com/floaterxk/PhatAC

mysql_version.h 1013B

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 "5.7.17"
  10. #define MYSQL_BASE_VERSION "mysqld-5.7"
  11. #define MYSQL_SERVER_SUFFIX_DEF ""
  12. #define FRM_VER 6
  13. #define MYSQL_VERSION_ID 50717
  14. #define MYSQL_PORT 3306
  15. #define MYSQL_PORT_DEFAULT 0
  16. #define MYSQL_UNIX_ADDR "/tmp/mysql.sock"
  17. #define MYSQL_CONFIG_NAME "my"
  18. #define MYSQL_COMPILATION_COMMENT "MySQL Community Server (GPL)"
  19. #define LIBMYSQL_VERSION "5.7.17"
  20. #define LIBMYSQL_VERSION_ID 50717
  21. #define SYS_SCHEMA_VERSION "1.5.1"
  22. #ifndef LICENSE
  23. #define LICENSE GPL
  24. #endif /* LICENSE */
  25. #endif /* _mysql_version_h */