diff options
| author | Nirbhay Choubey <nirbhay@mariadb.com> | 2015-11-06 14:40:03 -0500 |
|---|---|---|
| committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2015-11-06 14:40:03 -0500 |
| commit | 724323f4923406fac351f11c031d16ea2f9d23a0 (patch) | |
| tree | 5e9271d530f2a8abba4398f17923beb19b6f1da7 | |
| parent | 0a03bd1f043861be5bafa5b0cdff72995fac61d5 (diff) | |
| download | mariadb-git-bb-10.1-mdev9021.tar.gz | |
MDEV-9021: MYSQLD SEGFAULTS WHEN BUILT USING --WITH-MAX-INDEXES=128bb-10.1-mdev9021
Set default MAX_INDEXES to 128U (for testing).
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 728cc629af7..c087bf2fae9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,7 +58,7 @@ SET(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING # MAX_INDEXES - Set the maximum number of indexes per table, default 64U IF (NOT MAX_INDEXES) - SET(MAX_INDEXES 64U) + SET(MAX_INDEXES 128U) ENDIF(NOT MAX_INDEXES) IF (${MAX_INDEXES} GREATER 128) |
