~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/ha_commands.cc

  • Committer: Brian Aker
  • Date: 2010-03-05 03:12:24 UTC
  • mfrom: (1273.1.32 bug530870)
  • Revision ID: brian@gaz-20100305031224-ijnk5d5n4dut5mtv
Merge Jay's bugfix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
KEY_CREATE_INFO default_key_create_info= { HA_KEY_ALG_UNDEF, 0, {NULL,0} };
48
48
 
49
 
/* number of entries in storage_engines[] */
50
 
uint32_t total_ha= 0;
51
 
/* number of storage engines (from storage_engines[]) that support 2pc */
52
 
uint32_t total_ha_2pc= 0;
53
 
 
54
49
const char *ha_row_type[] = {
55
50
  "", "FIXED", "DYNAMIC", "COMPRESSED", "REDUNDANT", "COMPACT", "PAGE", "?","?","?"
56
51
};
144
139
  return 0;
145
140
}
146
141
 
147
 
int ha_init()
148
 
{
149
 
  int error= 0;
150
 
 
151
 
  assert(total_ha < MAX_HA);
152
 
  return error;
153
 
}
154
 
 
155
142
int ha_end()
156
143
{
157
144
  int error= 0;