Skip to content

Commit cfb3361

Browse files
committed
MDEV-12569 InnoDB suggests filing bugs at MySQL bug tracker
Replace all references in InnoDB and XtraDB error log messages to bugs.mysql.com with references to https://jira.mariadb.org/.
1 parent 439a7c9 commit cfb3361

File tree

26 files changed

+42
-42
lines changed

26 files changed

+42
-42
lines changed

storage/innobase/btr/btr0btr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1716,7 +1716,7 @@ btr_page_reorganize_low(
17161716
"InnoDB: Error: page old max ins size %lu"
17171717
" new max ins size %lu\n"
17181718
"InnoDB: Submit a detailed bug report"
1719-
" to http://bugs.mysql.com\n",
1719+
" to https://jira.mariadb.org/\n",
17201720
(unsigned long) data_size1, (unsigned long) data_size2,
17211721
(unsigned long) max_ins_size1,
17221722
(unsigned long) max_ins_size2);

storage/innobase/dict/dict0load.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1948,7 +1948,7 @@ dict_load_table(
19481948
"InnoDB: and recreate the foreign key table"
19491949
" or the referenced table.\n"
19501950
"InnoDB: Submit a detailed bug report"
1951-
" to http://bugs.mysql.com\n"
1951+
" to https://jira.mariadb.org/\n"
19521952
"InnoDB: Latest foreign key error printout:\n%s\n",
19531953
dict_foreign_err_buf);
19541954

storage/innobase/ibuf/ibuf0ibuf.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3904,7 +3904,7 @@ ibuf_insert_to_index_page_low(
39043904
(ulong) zip_size, (ulong) old_bits);
39053905

39063906
fputs("InnoDB: Submit a detailed bug report"
3907-
" to http://bugs.mysql.com\n", stderr);
3907+
" to https://jira.mariadb.org/\n", stderr);
39083908
ut_ad(0);
39093909
DBUG_RETURN(NULL);
39103910
}
@@ -3969,7 +3969,7 @@ ibuf_insert_to_index_page(
39693969
" Please run CHECK TABLE on\n"
39703970
"InnoDB: your tables.\n"
39713971
"InnoDB: Submit a detailed bug report to"
3972-
" http://bugs.mysql.com!\n", stderr);
3972+
" https://jira.mariadb.org/\n", stderr);
39733973

39743974
DBUG_VOID_RETURN;
39753975
}
@@ -4142,7 +4142,7 @@ ibuf_set_del_mark(
41424142
fprintf(stderr, "\nspace %u offset %u"
41434143
" (%u records, index id %llu)\n"
41444144
"InnoDB: Submit a detailed bug report"
4145-
" to http://bugs.mysql.com\n",
4145+
" to https://jira.mariadb.org/\n",
41464146
(unsigned) buf_block_get_space(block),
41474147
(unsigned) buf_block_get_page_no(block),
41484148
(unsigned) page_get_n_recs(page),
@@ -4206,7 +4206,7 @@ ibuf_delete(
42064206
fprintf(stderr, "\nspace %u offset %u"
42074207
" (%u records, index id %llu)\n"
42084208
"InnoDB: Submit a detailed bug report"
4209-
" to http://bugs.mysql.com\n",
4209+
" to https://jira.mariadb.org/\n",
42104210
(unsigned) buf_block_get_space(block),
42114211
(unsigned) buf_block_get_page_no(block),
42124212
(unsigned) page_get_n_recs(page),
@@ -4277,7 +4277,7 @@ ibuf_restore_pos(
42774277
} else {
42784278
fprintf(stderr,
42794279
"InnoDB: ERROR: Submit the output to"
4280-
" http://bugs.mysql.com\n"
4280+
" https://jira.mariadb.org/\n"
42814281
"InnoDB: ibuf cursor restoration fails!\n"
42824282
"InnoDB: ibuf record inserted to page %lu:%lu\n",
42834283
(ulong) space, (ulong) page_no);
@@ -4601,7 +4601,7 @@ ibuf_merge_or_delete_for_page(
46014601
"InnoDB: to determine if they are corrupt"
46024602
" after this.\n\n"
46034603
"InnoDB: Please submit a detailed bug report"
4604-
" to http://bugs.mysql.com\n\n",
4604+
" to https://jira.mariadb.org/\n\n",
46054605
(ulong) page_no,
46064606
(ulong)
46074607
fil_page_get_type(block->frame));

storage/innobase/include/mtr0log.ic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ mlog_write_initial_log_record_fast(
214214
"%d on page %lu of space %lu in the "
215215
"doublewrite buffer, continuing anyway.\n"
216216
"Please post a bug report to "
217-
"bugs.mysql.com.\n",
217+
"https://jira.mariadb.org/\n",
218218
type, offset, space);
219219
ut_ad(0);
220220
}

storage/innobase/lock/lock0lock.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1799,7 +1799,7 @@ lock_rec_enqueue_waiting(
17991799
dict_index_name_print(stderr, trx, index);
18001800
fputs(".\n"
18011801
"InnoDB: Submit a detailed bug report"
1802-
" to http://bugs.mysql.com\n",
1802+
" to https://jira.mariadb.org/\n",
18031803
stderr);
18041804
ut_ad(0);
18051805
}
@@ -3899,7 +3899,7 @@ lock_table_enqueue_waiting(
38993899
ut_print_name(stderr, trx, TRUE, table->name);
39003900
fputs(".\n"
39013901
"InnoDB: Submit a detailed bug report"
3902-
" to http://bugs.mysql.com\n",
3902+
" to https://jira.mariadb.org/\n",
39033903
stderr);
39043904
ut_ad(0);
39053905
}

storage/innobase/row/row0ins.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ row_ins_foreign_check_on_constraint(
956956
rec_print(stderr, clust_rec, clust_index);
957957
fputs("\n"
958958
"InnoDB: Submit a detailed bug report to"
959-
" http://bugs.mysql.com\n", stderr);
959+
" https://jira.mariadb.org/\n", stderr);
960960
ut_ad(0);
961961
err = DB_SUCCESS;
962962

storage/innobase/row/row0sel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2964,7 +2964,7 @@ row_sel_get_clust_rec_for_mysql(
29642964

29652965
fputs("\n"
29662966
"InnoDB: Submit a detailed bug report"
2967-
" to http://bugs.mysql.com\n", stderr);
2967+
" to https://jira.mariadb.org/\n", stderr);
29682968
ut_ad(0);
29692969
}
29702970

storage/innobase/row/row0umod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ row_undo_mod_del_unmark_sec_and_undo_update(
492492
trx_print(stderr, trx, 0);
493493
fputs("\n"
494494
"InnoDB: Submit a detailed bug report"
495-
" to http://bugs.mysql.com\n", stderr);
495+
" to https://jira.mariadb.org/\n", stderr);
496496
ut_ad(0);
497497
break;
498498
case ROW_FOUND:

storage/innobase/row/row0upd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1615,7 +1615,7 @@ row_upd_sec_index_entry(
16151615

16161616
fputs("\n"
16171617
"InnoDB: Submit a detailed bug report"
1618-
" to http://bugs.mysql.com\n", stderr);
1618+
" to https://jira.mariadb.org/\n", stderr);
16191619
ut_ad(0);
16201620
break;
16211621
case ROW_FOUND:

storage/innobase/srv/srv0srv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2480,7 +2480,7 @@ srv_error_monitor_thread(
24802480
" was greater\n"
24812481
"InnoDB: than the new log sequence number %llu!\n"
24822482
"InnoDB: Please submit a bug report"
2483-
" to http://bugs.mysql.com\n",
2483+
" to https://jira.mariadb.org/\n",
24842484
old_lsn, new_lsn);
24852485
ut_ad(0);
24862486
}

0 commit comments

Comments
 (0)