diff options
author | unknown <ram@mysql.r18.ru> | 2002-11-15 16:45:08 +0400 |
---|---|---|
committer | unknown <ram@mysql.r18.ru> | 2002-11-15 16:45:08 +0400 |
commit | a6007a364e556c32977a4c2c08ee7580395b2cc9 (patch) | |
tree | e9414a0e6f5f92d409ee7081cda310969881c69d /heap/heapdef.h | |
parent | 5a264eb9a7acd2fd45022c914506a7af343e9c83 (diff) | |
download | mariadb-git-a6007a364e556c32977a4c2c08ee7580395b2cc9.tar.gz |
fix for NULL processing
Diffstat (limited to 'heap/heapdef.h')
-rw-r--r-- | heap/heapdef.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/heap/heapdef.h b/heap/heapdef.h index b651bf4bcb1..63109badb05 100644 --- a/heap/heapdef.h +++ b/heap/heapdef.h @@ -97,7 +97,8 @@ extern uint hp_rb_null_key_length(HP_KEYDEF *keydef, const byte *key); extern my_bool hp_if_null_in_key(HP_KEYDEF *keyinfo, const byte *record); extern int hp_close(register HP_INFO *info); extern void hp_clear(HP_SHARE *info); -extern uint hp_rb_pack_key(HP_KEYDEF *keydef, uchar *key, const uchar *old); +extern uint hp_rb_pack_key(HP_KEYDEF *keydef, uchar *key, const uchar *old, + uint k_len); #ifdef THREAD extern pthread_mutex_t THR_LOCK_heap; #else |