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/opt_range.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/opt_range.cc')
-rw-r--r-- | sql/opt_range.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/opt_range.cc b/sql/opt_range.cc index 2a76229ecf9..4d8290628a7 100644 --- a/sql/opt_range.cc +++ b/sql/opt_range.cc @@ -1026,6 +1026,7 @@ get_mm_leaf(PARAM *param, Field *field, KEY_PART *key_part, if (value->save_in_field(field)) { + // TODO; Check if we can we remove the following block. if (type == Item_func::EQUAL_FUNC) { /* convert column_name <=> NULL -> column_name IS NULL */ |