~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/ha_commands.cc

  • Committer: Olaf van der Spek
  • Date: 2011-10-18 13:52:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2443.
  • Revision ID: olafvdspek@gmail.com-20111018135219-vn5xhy8pvumotthk
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
namespace drizzled {
44
44
 
45
 
KEY_CREATE_INFO default_key_create_info= { HA_KEY_ALG_UNDEF, 0, {NULL,0} };
 
45
KEY_CREATE_INFO default_key_create_info;
46
46
 
47
 
const char *ha_row_type[] = {
 
47
const char *ha_row_type[] = 
 
48
{
48
49
  "", "FIXED", "DYNAMIC", "COMPRESSED", "REDUNDANT", "COMPACT", "PAGE", "?","?","?"
49
50
};
50
51
 
51
 
 
52
 
 
53
52
/**
54
53
  Register Cursor error messages for use with my_error().
55
54
*/
56
55
 
57
 
void ha_init_errors(void)
 
56
void ha_init_errors()
58
57
{
59
58
  // Set the dedicated error messages.
60
59
  DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_KEY_NOT_FOUND,          ER(ER_KEY_NOT_FOUND));