summaryrefslogtreecommitdiff
path: root/storage/maria/ma_rkey.c
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2022-06-06 15:22:24 +0300
committerSergei Petrunia <sergey@mariadb.com>2022-06-07 20:43:11 +0300
commit3d241eb948855dbe0688a04c8111cc78deac3c1c (patch)
treefb4419ec163dffd9780afef2c5083a988d94b91f /storage/maria/ma_rkey.c
parent1de18a836f1abbe76632337f9296f402bbdf4cfc (diff)
downloadmariadb-git-3d241eb948855dbe0688a04c8111cc78deac3c1c.tar.gz
Improve error reporting in Aria
This patch fixes the following issues in Aria error reporting in case of read errors & crashed tables: - Added the table name to the most error messages, including in case of read errors or when encrypting/decrypting a table. The format for error messages was changed sligtly to accomodate logging of errors from lower level routines. - If we got an read error from storage (hard disk, ssd, S3 etc) we only reported 'table is crashed'. Now the error number from the storage is reported. - Added checking of read failure from records_in_range() - Calls to ma_set_fatal_error() did not inform the SQL level of errors (to not spam the user with multiple error messages). Now the first error message and any fatal error messages are reported to the user.
Diffstat (limited to 'storage/maria/ma_rkey.c')
-rw-r--r--storage/maria/ma_rkey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/maria/ma_rkey.c b/storage/maria/ma_rkey.c
index b48b0fc0c6b..8cd82e1c6fc 100644
--- a/storage/maria/ma_rkey.c
+++ b/storage/maria/ma_rkey.c
@@ -94,7 +94,7 @@ int maria_rkey(MARIA_HA *info, uchar *buf, int inx, const uchar *key_data,
case HA_KEY_ALG_RTREE:
if (maria_rtree_find_first(info, &key, nextflag) < 0)
{
- _ma_set_fatal_error(share, HA_ERR_CRASHED);
+ _ma_set_fatal_error(info, HA_ERR_CRASHED);
info->cur_row.lastpos= HA_OFFSET_ERROR;
}
break;