summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-10-18 14:52:19 +0500
committerunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-10-18 14:52:19 +0500
commitfffd105fa2c1b197dff2e67991222dc86a422f0c (patch)
tree3b3d9040405fb5d6f2dbcbb11fe9f8ad0722e620
parent62a7e160bc0e960ec1374a546dde4a7f26120ceb (diff)
downloadmariadb-git-fffd105fa2c1b197dff2e67991222dc86a422f0c.tar.gz
Bug #30638 why doesn't > 4294967295 rows work in myisam on windows.
The BIG_TABLES define wasn't enabled on Windows. #define added include/config-win.h: Bug #30638 why doesn't > 4294967295 rows work in myisam on windows. BIG_TABLES enabled on Windows
-rw-r--r--include/config-win.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/config-win.h b/include/config-win.h
index 279be7aa5e4..57c2b021831 100644
--- a/include/config-win.h
+++ b/include/config-win.h
@@ -33,6 +33,7 @@ functions */
#include <io.h>
#include <malloc.h>
+#define BIG_TABLES 1
#define HAVE_SMEM 1
#if defined(_WIN64) || defined(WIN64)