diff options
author | monty@mashka.mysql.fi <> | 2003-01-09 02:19:14 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-09 02:19:14 +0200 |
commit | 3c08da957e58937ead92a7609e67d2234fe76676 (patch) | |
tree | d8a4d338b246396e32745b9fe381fc6de42d5a9d /include/my_base.h | |
parent | 23c13c453982c4817831ecc36d06913518c52790 (diff) | |
download | mariadb-git-3c08da957e58937ead92a7609e67d2234fe76676.tar.gz |
Don't count NULL values in cardinalty for MyISAM tables.
Free row buffer cache after each query for MyISAM tables.
Added table join option FORCE INDEX
Fixed core dump bug when connecting with hostname that could not be resolved.
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/my_base.h b/include/my_base.h index bcb8c8d6a2f..feb5259ef08 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -263,6 +263,7 @@ enum ha_base_keytype { #define MBR_EQUAL 8192 #define MBR_DATA 16384 #define SEARCH_NULL_ARE_EQUAL 32768 /* NULL in keys are equal */ +#define SEARCH_NULL_ARE_NOT_EQUAL 65536 /* NULL in keys are not equal */ /* bits in opt_flag */ #define QUICK_USED 1 |