diff options
author | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-10-18 14:52:19 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-10-18 14:52:19 +0500 |
commit | fffd105fa2c1b197dff2e67991222dc86a422f0c (patch) | |
tree | 3b3d9040405fb5d6f2dbcbb11fe9f8ad0722e620 | |
parent | 62a7e160bc0e960ec1374a546dde4a7f26120ceb (diff) | |
download | mariadb-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.h | 1 |
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) |