diff options
author | Monty <monty@mariadb.org> | 2021-09-15 19:18:11 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2021-09-15 19:27:34 +0300 |
commit | f03fee06b0f4bdb1d754d987db3375cade02445e (patch) | |
tree | f2c29dd977bc5013aff31536868941d83bffa333 /include/my_handler_errors.h | |
parent | 6be0ddae5edb080219226525c4423300f063081d (diff) | |
download | mariadb-git-f03fee06b0f4bdb1d754d987db3375cade02445e.tar.gz |
Improve error messages from Ariatmp-10.5-monty
- Error on commit now returns HA_ERR_COMMIT_ERROR instead of
HA_ERR_INTERNAL_ERROR
- If checkpoint fails, it will now print out where it failed.
Diffstat (limited to 'include/my_handler_errors.h')
-rw-r--r-- | include/my_handler_errors.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/my_handler_errors.h b/include/my_handler_errors.h index faf7b9f459e..69b1566557d 100644 --- a/include/my_handler_errors.h +++ b/include/my_handler_errors.h @@ -107,7 +107,8 @@ static const char *handler_error_messages[]= "Foreign key cascade delete/update exceeds max depth", "Tablespace is missing for a table", "Sequence has been run out", - "Sequence values are conflicting" + "Sequence values are conflicting", + "Error during commit" }; #endif /* MYSYS_MY_HANDLER_ERRORS_INCLUDED */ |