Skip to content

Commit 771305b

Browse files
committed
MDEV-12569 InnoDB suggests filing bugs at MySQL bug tracker
Replace all references in InnoDB error log messages to bugs.mysql.com with references to https://jira.mariadb.org/.
1 parent 550c8bd commit 771305b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

storage/innobase/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22522,7 +22522,7 @@ const char* TROUBLESHOOT_DATADICT_MSG =
2252222522
" for how to resolve the issue.";
2252322523

2252422524
const char* BUG_REPORT_MSG =
22525-
"Submit a detailed bug report to http://bugs.mysql.com";
22525+
"Submit a detailed bug report to https://jira.mariadb.org/";
2252622526

2252722527
const char* FORCE_RECOVERY_MSG =
2252822528
"Please refer to " REFMAN "forcing-innodb-recovery.html"

storage/innobase/ibuf/ibuf0ibuf.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4210,7 +4210,7 @@ ibuf_delete(
42104210
fprintf(stderr, "\nspace " UINT32PF " offset " UINT32PF
42114211
" (%u records, index id %llu)\n"
42124212
"InnoDB: Submit a detailed bug report"
4213-
" to http://bugs.mysql.com\n",
4213+
" to https://jira.mariadb.org/\n",
42144214
block->page.id.space(),
42154215
block->page.id.page_no(),
42164216
(unsigned) page_get_n_recs(page),

storage/innobase/row/row0ins.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1240,7 +1240,7 @@ row_ins_foreign_check_on_constraint(
12401240
rec_print(stderr, clust_rec, clust_index);
12411241
fputs("\n"
12421242
"InnoDB: Submit a detailed bug report to"
1243-
" http://bugs.mysql.com\n", stderr);
1243+
" https://jira.mariadb.org/\n", stderr);
12441244
ut_ad(0);
12451245
err = DB_SUCCESS;
12461246

storage/innobase/row/row0sel.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3436,7 +3436,7 @@ row_sel_get_clust_rec_for_mysql(
34363436
trx_print(stderr, trx, 600);
34373437
fputs("\n"
34383438
"InnoDB: Submit a detailed bug report"
3439-
" to http://bugs.mysql.com\n", stderr);
3439+
" to https://jira.mariadb.org/\n", stderr);
34403440
ut_ad(0);
34413441
}
34423442

storage/innobase/srv/srv0srv.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1913,7 +1913,7 @@ DECLARE_THREAD(srv_error_monitor_thread)(void*)
19131913
ib::error() << "Old log sequence number " << old_lsn << " was"
19141914
<< " greater than the new log sequence number "
19151915
<< new_lsn << ". Please submit a bug report to"
1916-
" http://bugs.mysql.com";
1916+
" https://jira.mariadb.org/";
19171917
ut_ad(0);
19181918
}
19191919

storage/innobase/trx/trx0purge.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ trx_purge_rseg_get_next_history_log(
11771177
" list, but its length is still reported as "
11781178
<< trx_sys->rseg_history_len << "! Make"
11791179
" a detailed bug report, and submit it to"
1180-
" http://bugs.mysql.com";
1180+
" https://jira.mariadb.org/";
11811181
ut_ad(0);
11821182
}
11831183

storage/innobase/ut/ut0dbg.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ut_dbg_assertion_failed(
4848

4949
fputs("InnoDB: We intentionally generate a memory trap.\n"
5050
"InnoDB: Submit a detailed bug report"
51-
" to http://bugs.mysql.com.\n"
51+
" to https://jira.mariadb.org/\n"
5252
"InnoDB: If you get repeated assertion failures"
5353
" or crashes, even\n"
5454
"InnoDB: immediately after the mysqld startup, there may be\n"

0 commit comments

Comments
 (0)