~jaypipes/drizzle/subscriber-plugin

« back to all changes in this revision

Viewing changes to drizzled/my_hash.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
/* Dynamic hashing of record with different key-length */
21
21
 
22
 
#ifndef MYSYS_HASH_H
23
 
#define MYSYS_HASH_H
24
 
 
25
 
#include <mysys/my_sys.h>
 
22
#ifndef DRIZZLED_MY_HASH_H
 
23
#define DRIZZLED_MY_HASH_H
26
24
 
27
25
#ifdef __cplusplus
28
26
extern "C" {
29
27
#endif
30
28
 
 
29
#include "drizzled/dynamic_array.h"
 
30
 
 
31
typedef struct charset_info_st CHARSET_INFO;
 
32
 
31
33
/*
32
34
  Overhead to store an element in hash
33
35
  Can be used to approximate memory consumption for a hash
78
80
#ifdef __cplusplus
79
81
}
80
82
#endif
81
 
#endif /* MYSYS_HASH_H */
 
83
#endif /* DRIZZLED_MY_HASH_H */