diff options
author | Michael Widenius <monty@askmonty.org> | 2010-12-21 19:22:20 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-12-21 19:22:20 +0200 |
commit | 865685dc0c0d7dec7415b82bf93ad63ca26cbacc (patch) | |
tree | d7725926405794542321f26aa0cbc3d5e1815ca1 /BUILD | |
parent | 0b20943e9d7e22332ccc14b30b49a78a780cc23d (diff) | |
download | mariadb-git-865685dc0c0d7dec7415b82bf93ad63ca26cbacc.tar.gz |
Fixed bug in Aria that caused REPAIR to find old deleted rows.
BUILD/compile-pentium64:
Added --with-zlib-dir=bundled when doing static build.
mysql-test/suite/maria/r/maria.result:
Added test case
mysql-test/suite/maria/t/maria.test:
Added test case
storage/maria/ma_blockrec.c:
We need to flush blob pages to disk to ensure they overwrite any reused head/tail pages.
If not, REPAIR will find rows that was previously deleted.
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-pentium64 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/BUILD/compile-pentium64 b/BUILD/compile-pentium64 index 3a8fad51fea..01eb2adf88b 100755 --- a/BUILD/compile-pentium64 +++ b/BUILD/compile-pentium64 @@ -4,7 +4,10 @@ path=`dirname $0` . "$path/SETUP.sh" extra_flags="$pentium64_cflags $fast_cflags" -extra_configs="$pentium_configs $static_link" +# On CentOS/Fedora Core 10 amd64, there is system libz.so but not +# libz.a, so need to use bundled zlib when building static +# binary. Hence we use --with-zlib-dir=bundled +extra_configs="$pentium_configs $static_link --with-zlib-dir=bundled" CC="$CC --pipe" strip=yes |