~drizzle-trunk/drizzle/jenkins-Drizzle-Builder-213

« back to all changes in this revision

Viewing changes to drizzled/ha_commands.cc

  • Committer: Stewart Smith
  • Date: 2012-02-12 06:45:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2509.
  • Revision ID: stewart@flamingspork.com-20120212064537-ndq263il0mnl1s4d
rename HA_ERR_RBR_LOGGING_FAILED to HA_ERR_LOG_ROW_FOR_REPLICATION_FAILED and move error string over to drizzled/ha_commands.cc rather than plugin/myisam/my_handler_errors.cc as it has nothing to do with MyISAM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
  DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_TABLE_READONLY,         ER(ER_OPEN_AS_READONLY));
98
98
  DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_AUTOINC_READ_FAILED,    ER(ER_AUTOINC_READ_FAILED));
99
99
  DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_AUTOINC_ERANGE,         ER(ER_WARN_DATA_OUT_OF_RANGE));
 
100
  DRIZZLE_ADD_ERROR_MESSAGE(HA_ERR_LOG_ROW_FOR_REPLICATION_FAILED, N_("Logging a row change (insert, update or delete) for replication failed"));
100
101
}
101
102
 
102
103
} /* namespace drizzled */