~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/heap.h

  • Committer: Monty Taylor
  • Date: 2009-04-17 21:06:07 UTC
  • mto: (997.2.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 997.
  • Revision ID: mordred@inaugust.com-20090417210607-hjglwsuki9i5ut5x
Fixed a stupid hardcoding in po.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
/* This file should be included when using heap_database_functions */
17
17
/* Author: Michael Widenius */
18
18
 
19
 
#ifndef PLUGIN_HEAP_HEAP_H
20
 
#define PLUGIN_HEAP_HEAP_H
21
 
 
 
19
#ifndef _heap_h
 
20
#define _heap_h
22
21
#ifdef  __cplusplus
23
22
extern "C" {
24
23
#endif
28
27
#include <mysys/my_pthread.h>
29
28
#include <mysys/thr_lock.h>
30
29
 
31
 
#include <plugin/myisam/my_handler.h>
 
30
#include <storage/myisam/my_handler.h>
32
31
#include <mysys/my_tree.h>
33
32
 
34
33
        /* defines used by heap-funktions */
247
246
extern int heap_rfirst(HP_INFO *info,unsigned char *record,int inx);
248
247
extern int heap_rlast(HP_INFO *info,unsigned char *record,int inx);
249
248
extern void heap_clear(HP_INFO *info);
 
249
extern void heap_clear_keys(HP_INFO *info);
250
250
extern int heap_disable_indexes(HP_INFO *info);
251
251
extern int heap_enable_indexes(HP_INFO *info);
252
252
extern int heap_indexes_are_disabled(HP_INFO *info);
269
269
#ifdef  __cplusplus
270
270
}
271
271
#endif
272
 
 
273
 
#endif /* PLUGIN_HEAP_HEAP_H */
 
272
#endif