~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/hash.h

  • Committer: Jay Pipes
  • Date: 2008-07-17 20:11:46 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717201146-s2flcwwq0q89ac1y
Phase 3 removal of DBUG in mysys

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
bool hash_delete(HASH *hash,uchar *record);
66
66
bool hash_update(HASH *hash,uchar *record,uchar *old_key,size_t old_key_length);
67
67
void hash_replace(HASH *hash, HASH_SEARCH_STATE *state, uchar *new_row);
68
 
bool hash_check(HASH *hash);                    /* Only in debug library */
69
68
 
70
69
#define hash_clear(H) bzero((char*) (H),sizeof(*(H)))
71
70
#define hash_inited(H) ((H)->array.buffer != 0)