diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-17 05:18:06 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-17 05:18:06 +0300 |
commit | 4ed427921d9614b9d9a0ded478fc5e42128f6bf0 (patch) | |
tree | 6ddcfd168371a75010c2bd6892cf8b2b33839553 /sql/gen_lex_hash.cc | |
parent | ac6dc20ae0b4daa20390366eb5d1572f4c5113cf (diff) | |
download | mariadb-git-4ed427921d9614b9d9a0ded478fc5e42128f6bf0.tar.gz |
Fixed bug in SAFEMALLOC for systems that requires longlong data to be aligned on 8 byte boundaries (like sparc)
Removed thread marking of safemalloc blocks (becasue of alignment problems)
Temporary fix for bigint comparison.
configure.in:
Added size checking of char*
BitKeeper/etc/ignore:
Added sql-bench/innotest1 sql-bench/innotest1a sql-bench/innotest1b sql-bench/innotest2 sql-bench/innotest2a sql-bench/innotest2b to the ignore list
mysql-test/r/select.result:
Cleaned up test
mysql-test/t/select.test:
Cleaned up test
mysys/my_static.h:
Fixed bug in SAFEMALLOC for systems that requires longlong data to be aligned on 8 byte boundaries (like sparc)
mysys/safemalloc.c:
Fixed bug in SAFEMALLOC for systems that requires longlong data to be aligned on 8 byte boundaries (like sparc)
sql/field.h:
Temporary fix for bigint comparison.
sql/gen_lex_hash.cc:
Smaller hash table
sql/item_cmpfunc.cc:
Cleanup
sql/mysqld.cc:
Removed thread marking of safemalloc blocks (becasue of alignment problems)
sql/opt_range.cc:
Comment
Diffstat (limited to 'sql/gen_lex_hash.cc')
-rw-r--r-- | sql/gen_lex_hash.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/gen_lex_hash.cc b/sql/gen_lex_hash.cc index bd48c65586a..c24e7b6d124 100644 --- a/sql/gen_lex_hash.cc +++ b/sql/gen_lex_hash.cc @@ -469,7 +469,7 @@ int main(int argc,char **argv) int error; MY_INIT(argv[0]); - start_value=7281255L; best_t1=4459515L; best_t2=321142L; best_type=2; /* mode=5953 add=7 type: 0 */ + start_value=2925024L; best_t1=654916L; best_t2=1723390L; best_type=3; /* mode=4943 add=1 type: 0 */ if (get_options(argc,(char **) argv)) exit(1); |