~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/memory/heap.h

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#pragma once
22
22
 
23
23
#include <drizzled/base.h>
24
 
#include <drizzled/common.h>
25
 
#include <drizzled/internal/my_pthread.h>
26
24
#include <drizzled/thr_lock.h>
27
25
 
28
26
#include <plugin/myisam/my_handler.h>
29
 
#include <drizzled/tree.h>
30
27
 
31
28
#include <vector>
32
29
 
305
302
              enum drizzled::ha_rkey_function find_flag);
306
303
extern unsigned char * heap_find(HP_INFO *info,int inx,const unsigned char *key);
307
304
extern unsigned char *heap_position(HP_INFO *info);
308
 
 
309
 
/* The following is for programs that uses the old HEAP interface where
310
 
   pointer to rows where a long instead of a (unsigned char*).
311
 
*/
312
 
 
313
 
typedef unsigned char *HEAP_PTR;
314