mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 00:54:30 +02:00
Bug #58092 Test "rpl_cross_version" has "copy_file" failing
I am not fixing the test failure Adds printing of my_errno when commands fail, could hopefully help
This commit is contained in:
parent
067710eba1
commit
cc21483fcf
3 changed files with 6 additions and 5 deletions
|
|
@ -1088,8 +1088,8 @@ void handle_command_error(struct st_command *command, uint error)
|
|||
int i;
|
||||
|
||||
if (command->abort_on_error)
|
||||
die("command \"%.*s\" failed with error %d",
|
||||
command->first_word_len, command->query, error);
|
||||
die("command \"%.*s\" failed with error %d. my_errno=%d",
|
||||
command->first_word_len, command->query, error, my_errno);
|
||||
|
||||
i= match_expected_error(command, error, NULL);
|
||||
|
||||
|
|
@ -1100,8 +1100,8 @@ void handle_command_error(struct st_command *command, uint error)
|
|||
DBUG_VOID_RETURN;
|
||||
}
|
||||
if (command->expected_errors.count > 0)
|
||||
die("command \"%.*s\" failed with wrong error: %d",
|
||||
command->first_word_len, command->query, error);
|
||||
die("command \"%.*s\" failed with wrong error: %d. my_errno=%d",
|
||||
command->first_word_len, command->query, error, my_errno);
|
||||
}
|
||||
else if (command->expected_errors.err[0].type == ERR_ERRNO &&
|
||||
command->expected_errors.err[0].code.errnum != 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue