Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updated/added copyright headers | MySQL Build Team | 2012-02-16 | 1 | -1/+1 |
|\ | |||||
* \ | Updated/added copyright headers | Kent Boortz | 2011-06-30 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Updated/added copyright headers | Kent Boortz | 2011-06-30 | 2 | -2/+2 |
| | | |||||
* | | WL#5665: Removal of the autotools-based build system | Davi Arnaut | 2010-11-20 | 1 | -27/+0 |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The autotools-based build system has been superseded and is being removed in order to ease the maintenance burden on developers tweaking and maintaining the build system. In order to support tools that need to extract the server version, a new file that (only) contains the server version, called VERSION, is introduced. The file contents are human and machine-readable. The format is: MYSQL_VERSION_MAJOR=5 MYSQL_VERSION_MINOR=5 MYSQL_VERSION_PATCH=8 MYSQL_VERSION_EXTRA=-rc The CMake based version extraction in cmake/mysql_version.cmake is changed to extract the version from this file. The configure to CMake wrapper is retained for backwards compatibility and to support the BUILD/ scripts. Also, a new a makefile target show-dist-name that prints the server version is introduced. VERSION: Add top-level version file. cmake/mysql_version.cmake: Get version information from the top-level VERSION file. Do not cache the version components (MAJOR_VERSION, etc). Add MYSQL_RPM_VERSION as a replacement for MYSQL_U_SCORE_VERSION. | ||||
* | Postfix for BUG#45012. | Alexander Barkov | 2010-07-29 | 1 | -3/+3 |
| | | | | | | | | Problem: The original patch didn't compile on debug_werror due to wrong format in printf("%d") for size_t variables. Fix: Adding cast to (int). | ||||
* | Bug#45012 my_like_range_cp932 generates invalid string | Alexander Barkov | 2010-07-26 | 2 | -0/+141 |
Problem: The functions my_like_range_xxx() returned badly formed maximum strings for Asian character sets, which made problems for storage engines. Fix: - Removed a number my_like_range_xxx() implementations, which were in fact dumplicate code pieces. - Using generic my_like_range_mb() instead. - Setting max_sort_char member properly for Asian character sets - Adding unittest/strings/strings-t.c, to test that my_like_range_xxx() return well-formed min and max strings. Notes: - No additional tests in mysql/t/ available. Old tests cover the affected code well enough. |