diff options
author | gluh@eagle.intranet.mysql.r18.ru <> | 2006-03-28 17:25:19 +0500 |
---|---|---|
committer | gluh@eagle.intranet.mysql.r18.ru <> | 2006-03-28 17:25:19 +0500 |
commit | 9c82b6746a6da5f69053806c7b3431e00b92876e (patch) | |
tree | 4c11c702a95f21bb362555e3a85cedee371924c4 /sql/sql_partition.h | |
parent | 3c6d2e322cdca189d29be2bc5855f618f145a38e (diff) | |
download | mariadb-git-9c82b6746a6da5f69053806c7b3431e00b92876e.tar.gz |
Bug#18053 Partitions: crash if null
Bug#18070 Partitions: wrong result on WHERE ... IS NULL
removed unnecessary code
added handling of NULL values
Diffstat (limited to 'sql/sql_partition.h')
-rw-r--r-- | sql/sql_partition.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_partition.h b/sql/sql_partition.h index 4982b1fcf1f..c214be81ae4 100644 --- a/sql/sql_partition.h +++ b/sql/sql_partition.h @@ -124,7 +124,7 @@ typedef uint32 (*partition_iter_func)(st_partition_iter* part_iter); typedef struct st_partition_iter { partition_iter_func get_next; - + bool has_null_value; struct st_part_num_range { uint32 start; |