PDF (US Ltr)
- 40.4Mb
PDF (A4)
- 40.5Mb
Man Pages (TGZ)
- 259.5Kb
Man Pages (Zip)
- 366.7Kb
Info (Gzip)
- 4.1Mb
Info (Zip)
- 4.1Mb
Third-party tools that need to determine the MySQL version from
the MySQL source can read the MYSQL_VERSION
file in the top-level source directory. The file lists the pieces
of the version separately. For example, if the version is MySQL
9.1.0, the file looks like this:
MYSQL_VERSION_MAJOR=9
MYSQL_VERSION_MINOR=1
MYSQL_VERSION_PATCH=0
MYSQL_VERSION_EXTRA="INNOVATION"To construct a five-digit number from the version components, use this formula:
MYSQL_VERSION_MAJOR*10000 + MYSQL_VERSION_MINOR*100 + MYSQL_VERSION_PATCH