691
720
if (error && generate_warning)
693
TableShare dummy_share;
699
if ((file= engine->create(dummy_share, session.mem_root)))
702
memset(&dummy_table, 0, sizeof(dummy_table));
703
memset(&dummy_share, 0, sizeof(dummy_share));
704
dummy_table.s= &dummy_share;
707
Because file->print_error() use my_error() to generate the error message
723
Because engine->print_error() use my_error() to generate the error message
708
724
we use an internal error Cursor to intercept it and store the text
709
725
in a temporary buffer. Later the message will be presented to user
712
728
Ha_delete_table_error_handler ha_delete_table_error_handler;
714
/* Fill up strucutures that print_error may need */
715
dummy_share.path.str= (char*) path;
716
dummy_share.path.length= strlen(path);
717
dummy_share.db.str= (char*) db;
718
dummy_share.db.length= strlen(db);
719
dummy_share.table_name.str= (char*) alias;
720
dummy_share.table_name.length= strlen(alias);
721
dummy_table.alias= alias;
725
file->change_table_ptr(&dummy_table, &dummy_share);
727
session.push_internal_handler(&ha_delete_table_error_handler);
728
file->print_error(error, 0);
730
session.pop_internal_handler();
733
error= -1; /* General form of fail. maybe bad FRM */
730
session.push_internal_handler(&ha_delete_table_error_handler);
731
engine->print_error(error, 0);
733
session.pop_internal_handler();
736
736
XXX: should we convert *all* errors to warnings here?
997
Print error that we got from Cursor function.
1000
In case of delete table it's only safe to use the following parts of
1001
the 'table' structure:
1005
void plugin::StorageEngine::print_error(int error, myf errflag, Table &table)
1007
print_error(error, errflag, &table);
1010
void plugin::StorageEngine::print_error(int error, myf errflag, Table *table)
1012
int textno= ER_GET_ERRNO;
1015
textno=ER_OPEN_AS_READONLY;
1018
textno=ER_FILE_USED;
1021
textno=ER_FILE_NOT_FOUND;
1023
case HA_ERR_KEY_NOT_FOUND:
1024
case HA_ERR_NO_ACTIVE_RECORD:
1025
case HA_ERR_END_OF_FILE:
1026
textno=ER_KEY_NOT_FOUND;
1028
case HA_ERR_WRONG_MRG_TABLE_DEF:
1029
textno=ER_WRONG_MRG_TABLE;
1031
case HA_ERR_FOUND_DUPP_KEY:
1034
uint32_t key_nr= table->get_dup_key(error);
1035
if ((int) key_nr >= 0)
1037
const char *err_msg= ER(ER_DUP_ENTRY_WITH_KEY_NAME);
1040
(table->key_info[0].key_part[0].field->flags &
1041
AUTO_INCREMENT_FLAG)
1042
&& (current_session)->lex->sql_command == SQLCOM_ALTER_TABLE)
1044
err_msg= ER(ER_DUP_ENTRY_AUTOINCREMENT_CASE);
1047
print_keydup_error(key_nr, err_msg, *table);
1053
case HA_ERR_FOREIGN_DUPLICATE_KEY:
1056
uint32_t key_nr= table->get_dup_key(error);
1057
if ((int) key_nr >= 0)
1059
uint32_t max_length;
1061
/* Write the key in the error message */
1062
char key[MAX_KEY_LENGTH];
1063
String str(key,sizeof(key),system_charset_info);
1065
/* Table is opened and defined at this point */
1066
key_unpack(&str,table,(uint32_t) key_nr);
1067
max_length= (DRIZZLE_ERRMSG_SIZE-
1068
(uint32_t) strlen(ER(ER_FOREIGN_DUPLICATE_KEY)));
1069
if (str.length() >= max_length)
1071
str.length(max_length-4);
1072
str.append(STRING_WITH_LEN("..."));
1074
my_error(ER_FOREIGN_DUPLICATE_KEY, MYF(0), table->s->table_name.str,
1075
str.c_ptr(), key_nr+1);
1081
case HA_ERR_FOUND_DUPP_UNIQUE:
1082
textno=ER_DUP_UNIQUE;
1084
case HA_ERR_RECORD_CHANGED:
1085
textno=ER_CHECKREAD;
1087
case HA_ERR_CRASHED:
1088
textno=ER_NOT_KEYFILE;
1090
case HA_ERR_WRONG_IN_RECORD:
1091
textno= ER_CRASHED_ON_USAGE;
1093
case HA_ERR_CRASHED_ON_USAGE:
1094
textno=ER_CRASHED_ON_USAGE;
1096
case HA_ERR_NOT_A_TABLE:
1099
case HA_ERR_CRASHED_ON_REPAIR:
1100
textno=ER_CRASHED_ON_REPAIR;
1102
case HA_ERR_OUT_OF_MEM:
1103
textno=ER_OUT_OF_RESOURCES;
1105
case HA_ERR_WRONG_COMMAND:
1106
textno=ER_ILLEGAL_HA;
1108
case HA_ERR_OLD_FILE:
1109
textno=ER_OLD_KEYFILE;
1111
case HA_ERR_UNSUPPORTED:
1112
textno=ER_UNSUPPORTED_EXTENSION;
1114
case HA_ERR_RECORD_FILE_FULL:
1115
case HA_ERR_INDEX_FILE_FULL:
1116
textno=ER_RECORD_FILE_FULL;
1118
case HA_ERR_LOCK_WAIT_TIMEOUT:
1119
textno=ER_LOCK_WAIT_TIMEOUT;
1121
case HA_ERR_LOCK_TABLE_FULL:
1122
textno=ER_LOCK_TABLE_FULL;
1124
case HA_ERR_LOCK_DEADLOCK:
1125
textno=ER_LOCK_DEADLOCK;
1127
case HA_ERR_READ_ONLY_TRANSACTION:
1128
textno=ER_READ_ONLY_TRANSACTION;
1130
case HA_ERR_CANNOT_ADD_FOREIGN:
1131
textno=ER_CANNOT_ADD_FOREIGN;
1133
case HA_ERR_ROW_IS_REFERENCED:
1136
get_error_message(error, &str);
1137
my_error(ER_ROW_IS_REFERENCED_2, MYF(0), str.c_ptr_safe());
1140
case HA_ERR_NO_REFERENCED_ROW:
1143
get_error_message(error, &str);
1144
my_error(ER_NO_REFERENCED_ROW_2, MYF(0), str.c_ptr_safe());
1147
case HA_ERR_TABLE_DEF_CHANGED:
1148
textno=ER_TABLE_DEF_CHANGED;
1150
case HA_ERR_NO_SUCH_TABLE:
1152
my_error(ER_NO_SUCH_TABLE, MYF(0), table->s->db.str,
1153
table->s->table_name.str);
1155
case HA_ERR_RBR_LOGGING_FAILED:
1156
textno= ER_BINLOG_ROW_LOGGING_FAILED;
1158
case HA_ERR_DROP_INDEX_FK:
1161
const char *ptr= "???";
1162
uint32_t key_nr= table->get_dup_key(error);
1163
if ((int) key_nr >= 0)
1164
ptr= table->key_info[key_nr].name;
1165
my_error(ER_DROP_INDEX_FK, MYF(0), ptr);
1168
case HA_ERR_TABLE_NEEDS_UPGRADE:
1169
textno=ER_TABLE_NEEDS_UPGRADE;
1171
case HA_ERR_TABLE_READONLY:
1172
textno= ER_OPEN_AS_READONLY;
1174
case HA_ERR_AUTOINC_READ_FAILED:
1175
textno= ER_AUTOINC_READ_FAILED;
1177
case HA_ERR_AUTOINC_ERANGE:
1178
textno= ER_WARN_DATA_OUT_OF_RANGE;
1180
case HA_ERR_LOCK_OR_ACTIVE_TRANSACTION:
1181
my_message(ER_LOCK_OR_ACTIVE_TRANSACTION,
1182
ER(ER_LOCK_OR_ACTIVE_TRANSACTION), MYF(0));
1187
The error was "unknown" to this function.
1188
Ask Cursor if it has got a message for this error
1190
bool temporary= false;
1192
temporary= get_error_message(error, &str);
1193
if (!str.is_empty())
1195
const char* engine_name= getName().c_str();
1197
my_error(ER_GET_TEMPORARY_ERRMSG, MYF(0), error, str.ptr(),
1200
my_error(ER_GET_ERRMSG, MYF(0), error, str.ptr(), engine_name);
1204
my_error(ER_GET_ERRNO,errflag,error);
1209
my_error(textno, errflag, table->s->table_name.str, error);
1214
Return an error message specific to this Cursor.
1216
@param error error code previously returned by Cursor
1217
@param buf pointer to String where to add error message
1220
Returns true if this is a temporary error
1222
bool plugin::StorageEngine::get_error_message(int , String* )
1228
void plugin::StorageEngine::print_keydup_error(uint32_t key_nr, const char *msg, Table &table)
1230
/* Write the duplicated key in the error message */
1231
char key[MAX_KEY_LENGTH];
1232
String str(key,sizeof(key),system_charset_info);
1234
if (key_nr == MAX_KEY)
1236
/* Key is unknown */
1237
str.copy("", 0, system_charset_info);
1238
my_printf_error(ER_DUP_ENTRY, msg, MYF(0), str.c_ptr(), "*UNKNOWN*");
1242
/* Table is opened and defined at this point */
1243
key_unpack(&str, &table, (uint32_t) key_nr);
1244
uint32_t max_length=DRIZZLE_ERRMSG_SIZE-(uint32_t) strlen(msg);
1245
if (str.length() >= max_length)
1247
str.length(max_length-4);
1248
str.append(STRING_WITH_LEN("..."));
1250
my_printf_error(ER_DUP_ENTRY, msg,
1251
MYF(0), str.c_ptr(), table.key_info[key_nr].name);
1001
1257
} /* namespace drizzled */