~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2009-10-02 19:38:12 UTC
  • mfrom: (1152.1.7 merge)
  • Revision ID: brian@gaz-20091002193812-mpd61oecep74t6gd
Merge Monty + Brian for plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include <drizzled/lex_string.h>
30
30
 
31
31
class Ha_trx_info;
32
 
struct StorageEngine;
33
32
struct st_key;
34
33
typedef struct st_key KEY;
35
34
struct st_key_cache;
36
35
typedef struct st_key_cache KEY_CACHE;
37
36
 
 
37
namespace drizzled
 
38
{
 
39
namespace plugin
 
40
{
 
41
class StorageEngine;
 
42
}
 
43
}
 
44
 
38
45
struct Session_TRANS
39
46
{
40
47
  Session_TRANS() {};
85
92
  uint32_t used_fields;
86
93
  uint32_t key_block_size;
87
94
  enum row_type row_type;
88
 
  StorageEngine *db_type;
 
95
  drizzled::plugin::StorageEngine *db_type;
89
96
  uint32_t options;                         /* OR of HA_CREATE_ options */
90
97
  bool table_existed;                   /* 1 in create if table existed */
91
98
} HA_CREATE_INFO;