Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
981f6ef9
Commit
981f6ef9
authored
May 11, 2004
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: Changed bug reporting address to
http://bugs.mysql.com
parent
cdb7e592
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
23 additions
and
30 deletions
+23
-30
innobase/btr/btr0btr.c
innobase/btr/btr0btr.c
+1
-1
innobase/dict/dict0load.c
innobase/dict/dict0load.c
+1
-1
innobase/ibuf/ibuf0ibuf.c
innobase/ibuf/ibuf0ibuf.c
+3
-4
innobase/lock/lock0lock.c
innobase/lock/lock0lock.c
+4
-2
innobase/row/row0ins.c
innobase/row/row0ins.c
+1
-2
innobase/row/row0sel.c
innobase/row/row0sel.c
+1
-2
innobase/row/row0umod.c
innobase/row/row0umod.c
+1
-2
innobase/row/row0upd.c
innobase/row/row0upd.c
+1
-2
innobase/trx/trx0rec.c
innobase/trx/trx0rec.c
+9
-13
innobase/ut/ut0dbg.c
innobase/ut/ut0dbg.c
+1
-1
No files found.
innobase/btr/btr0btr.c
View file @
981f6ef9
...
...
@@ -882,7 +882,7 @@ btr_page_reorganize_low(
fprintf
(
stderr
,
"InnoDB: Error: page old data size %lu new data size %lu
\n
"
"InnoDB: Error: page old max ins size %lu new max ins size %lu
\n
"
"InnoDB:
Make a detailed bug report and send it to mysql@list
s.mysql.com
\n
"
,
"InnoDB:
Submit a detailed bug report to http://bug
s.mysql.com
\n
"
,
data_size1
,
data_size2
,
max_ins_size1
,
max_ins_size2
);
}
...
...
innobase/dict/dict0load.c
View file @
981f6ef9
...
...
@@ -721,7 +721,7 @@ dict_load_table(
"InnoDB: the foreign key table or the referenced table!\n"
"InnoDB: The data dictionary of InnoDB is corrupt. You may need to drop\n"
"InnoDB: and recreate the foreign key table or the referenced table.\n"
"InnoDB: S
end a detailed bug report to mysql@list
s.mysql.com\n"
"InnoDB: S
ubmit a detailed bug report to http://bug
s.mysql.com\n"
"InnoDB: Latest foreign key error printout:\n%s\n", dict_foreign_err_buf);
mutex_exit(&dict_foreign_err_mutex);
...
...
innobase/ibuf/ibuf0ibuf.c
View file @
981f6ef9
...
...
@@ -2385,7 +2385,7 @@ ibuf_insert_to_index_page(
fprintf
(
stderr
,
"Bitmap bits %lu
\n
"
,
old_bits
);
fputs
(
"InnoDB: S
end a detailed bug report to mysql@lists.mysql.com!
\n
"
,
stderr
);
"InnoDB: S
ubmit a detailed bug report to http://bugs.mysql.com
\n
"
,
stderr
);
}
}
...
...
@@ -2443,7 +2443,7 @@ ibuf_delete_rec(
if
(
!
success
)
{
fprintf
(
stderr
,
"InnoDB: ERROR: S
end the output to mysql@list
s.mysql.com
\n
"
"InnoDB: ERROR: S
ubmit the output to http://bug
s.mysql.com
\n
"
"InnoDB: ibuf cursor restoration fails!
\n
"
"InnoDB: ibuf record inserted to page %lu
\n
"
,
page_no
);
fflush
(
stderr
);
...
...
@@ -2597,8 +2597,7 @@ ibuf_merge_or_delete_for_page(
"InnoDB: We try to resolve the problem by skipping the insert buffer
\n
"
"InnoDB: merge for this page. Please run CHECK TABLE on your tables
\n
"
"InnoDB: to determine if they are corrupt after this.
\n\n
"
"InnoDB: Please make a detailed bug report and send it to
\n
"
"InnoDB: mysql@lists.mysql.com
\n\n
"
,
"InnoDB: Please submit a detailed bug report to http://bugs.mysql.com
\n\n
"
,
page_no
,
fil_page_get_type
(
page
));
}
}
...
...
innobase/lock/lock0lock.c
View file @
981f6ef9
...
...
@@ -1629,7 +1629,8 @@ lock_rec_enqueue_waiting(
" InnoDB: Error: a record lock wait happens in a dictionary operation!
\n
"
"InnoDB: Table name "
,
stderr
);
ut_print_name
(
stderr
,
index
->
table_name
);
fputs
(
". Send a bug report to mysql@lists.mysql.com
\n
"
,
fputs
(
".
\n
"
"InnoDB: Submit a detailed bug report to http://bugs.mysql.com
\n
"
,
stderr
);
}
...
...
@@ -3269,7 +3270,8 @@ lock_table_enqueue_waiting(
" InnoDB: Error: a table lock wait happens in a dictionary operation!
\n
"
"InnoDB: Table name "
,
stderr
);
ut_print_name
(
stderr
,
table
->
name
);
fputs
(
". Send a bug report to mysql@lists.mysql.com
\n
"
,
fputs
(
".
\n
"
"InnoDB: Submit a detailed bug report to http://bugs.mysql.com
\n
"
,
stderr
);
}
...
...
innobase/row/row0ins.c
View file @
981f6ef9
...
...
@@ -803,8 +803,7 @@ row_ins_foreign_check_on_constraint(
"InnoDB: clustered record "
,
stderr
);
rec_print
(
stderr
,
clust_rec
);
fputs
(
"
\n
"
"InnoDB: Make a detailed bug report and send it
\n
"
"InnoDB: to mysql@lists.mysql.com
\n
"
,
stderr
);
"InnoDB: Submit a detailed bug report to http://bugs.mysql.com
\n
"
,
stderr
);
err
=
DB_SUCCESS
;
...
...
innobase/row/row0sel.c
View file @
981f6ef9
...
...
@@ -2358,8 +2358,7 @@ row_sel_get_clust_rec_for_mysql(
trx_print
(
stderr
,
thr_get_trx
(
thr
));
fputs
(
"
\n
"
"InnoDB: Make a detailed bug report and send it
\n
"
"InnoDB: to mysql@lists.mysql.com
\n
"
,
stderr
);
"InnoDB: Submit a detailed bug report to http://bugs.mysql.com
\n
"
,
stderr
);
}
clust_rec
=
NULL
;
...
...
innobase/row/row0umod.c
View file @
981f6ef9
...
...
@@ -441,8 +441,7 @@ row_undo_mod_del_unmark_sec_and_undo_update(
putc
(
'\n'
,
stderr
);
trx_print
(
stderr
,
thr_get_trx
(
thr
));
fputs
(
"
\n
"
"InnoDB: Make a detailed bug report and send it
\n
"
"InnoDB: to mysql@lists.mysql.com
\n
"
,
stderr
);
"InnoDB: Submit a detailed bug report to http://bugs.mysql.com
\n
"
,
stderr
);
}
else
{
btr_cur_t
*
btr_cur
=
btr_pcur_get_btr_cur
(
&
pcur
);
...
...
innobase/row/row0upd.c
View file @
981f6ef9
...
...
@@ -1236,8 +1236,7 @@ row_upd_sec_index_entry(
trx_print
(
stderr
,
thr_get_trx
(
thr
));
fputs
(
"
\n
"
"InnoDB: Make a detailed bug report and send it
\n
"
"InnoDB: to mysql@lists.mysql.com
\n
"
,
stderr
);
"InnoDB: Submit a detailed bug report to http://bugs.mysql.com
\n
"
,
stderr
);
}
else
{
/* Delete mark the old index record; it can already be
delete marked if we return after a lock wait in
...
...
innobase/trx/trx0rec.c
View file @
981f6ef9
...
...
@@ -823,17 +823,16 @@ trx_undo_update_rec_get_update(
if
(
field_no
>=
dict_index_get_n_fields
(
index
))
{
fprintf
(
stderr
,
"InnoDB: Error: trying to access"
" update undo rec field %lu in "
,
field_no
);
"InnoDB: Error: trying to access update undo rec field %lu in "
,
field_no
);
dict_index_name_print
(
stderr
,
index
);
fprintf
(
stderr
,
"
\n
"
"InnoDB: but index has only %lu fields
\n
"
"InnoDB: Send a detailed bug report to mysql@list
s.mysql.com
\n
"
"InnoDB: Run also CHECK TABLE "
,
"InnoDB: but index has only %lu fields
\n
"
"InnoDB: Submit a detailed bug report to http://bug
s.mysql.com
\n
"
"InnoDB: Run also CHECK TABLE "
,
dict_index_get_n_fields
(
index
));
ut_print_name
(
stderr
,
index
->
table_name
);
fprintf
(
stderr
,
"
\n
"
"InnoDB: n_fields = %lu, i = %lu, ptr %p
\n
"
,
"InnoDB: n_fields = %lu, i = %lu, ptr %p
\n
"
,
n_fields
,
i
,
ptr
);
return
(
NULL
);
}
...
...
@@ -1271,8 +1270,7 @@ trx_undo_prev_version_build(
" update undo rec for non-clustered "
,
stderr
);
dict_index_name_print
(
stderr
,
index
);
fputs
(
"
\n
"
"InnoDB: Send a detailed bug report to"
" mysql@lists.mysql.com
\n
"
"InnoDB: Submit a detailed bug report to http://bugs.mysql.com
\n
"
"InnoDB: index record "
,
stderr
);
rec_print
(
stderr
,
index_rec
);
fputs
(
"
\n
"
...
...
@@ -1320,11 +1318,9 @@ trx_undo_prev_version_build(
" update undo rec for table "
,
stderr
);
ut_print_name
(
stderr
,
index
->
table_name
);
fputs
(
"
\n
"
"InnoDB: but the table id in the"
" undo record is wrong
\n
"
"InnoDB: Send a detailed bug report to "
"mysql@lists.mysql.com
\n
"
"InnoDB: Run also CHECK TABLE "
,
stderr
);
"InnoDB: but the table id in the undo record is wrong
\n
"
"InnoDB: Submit a detailed bug report to http://bugs.mysql.com
\n
"
"InnoDB: Run also CHECK TABLE "
,
stderr
);
ut_print_name
(
stderr
,
index
->
table_name
);
putc
(
'\n'
,
stderr
);
}
...
...
innobase/ut/ut0dbg.c
View file @
981f6ef9
...
...
@@ -23,7 +23,7 @@ const char* ut_dbg_msg_assert_fail =
"InnoDB: Assertion failure in thread %lu in file %s line %lu
\n
"
;
const
char
*
ut_dbg_msg_trap
=
"InnoDB: We intentionally generate a memory trap.
\n
"
"InnoDB: S
end a detailed bug report to mysql@list
s.mysql.com.
\n
"
"InnoDB: S
ubmit a detailed bug report to http://bug
s.mysql.com.
\n
"
"InnoDB: If you get repeated assertion failures or crashes, even
\n
"
"InnoDB: immediately after the mysqld startup, there may be
\n
"
"InnoDB: corruption in the InnoDB tablespace. See section 6.1 of
\n
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment