mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
dict0load.c:
Fix wrong sprintf argument row0sel.c: Fix uninitialized variable error found by Miguel innobase/row/row0sel.c: Fix uninitialized variable error found by Miguel innobase/dict/dict0load.c: Fix wrong sprintf argument
This commit is contained in:
@ -335,7 +335,7 @@ dict_load_fields(
|
||||
ut_a(btr_pcur_is_on_user_rec(&pcur, &mtr));
|
||||
if (rec_get_deleted_flag(rec)) {
|
||||
fprintf(stderr,
|
||||
"InnoDB: Error: data dictionary entry for table %s is corrupt!\n",
|
||||
"InnoDB: Error: data dictionary entry for table %s is corrupt!\n"
|
||||
"InnoDB: An index field is delete marked.\n",
|
||||
table->name);
|
||||
}
|
||||
|
@ -2228,6 +2228,7 @@ row_sel_get_clust_rec_for_mysql(
|
||||
rec_sprintf(err_buf, 900, clust_rec);
|
||||
fprintf(stderr, "InnoDB: clust index record %s\n", err_buf);
|
||||
|
||||
trx = thr_get_trx(thr);
|
||||
trx_print(err_buf, trx);
|
||||
|
||||
fprintf(stderr,
|
||||
|
Reference in New Issue
Block a user