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
8449dd57
Commit
8449dd57
authored
May 29, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-marvel
into mysql.com:/home/my/mysql-5.1
parents
72a9b472
9ac571dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
11 deletions
+18
-11
mysql-test/lib/mtr_report.pl
mysql-test/lib/mtr_report.pl
+15
-8
mysys/my_compress.c
mysys/my_compress.c
+2
-2
sql/sql_class.cc
sql/sql_class.cc
+1
-1
No files found.
mysql-test/lib/mtr_report.pl
View file @
8449dd57
...
...
@@ -270,6 +270,7 @@ sub mtr_report_stats ($) {
"
\\
[ERROR
\\
]
",
"
^Error:
",
"
^==.* at 0x
",
"
InnoDB: Warning
",
"
^safe_mutex:
",
"
missing DBUG_RETURN
",
"
mysqld: Warning
",
"
allocated at line
",
...
...
@@ -286,6 +287,7 @@ sub mtr_report_stats ($) {
{
# Skip some non fatal warnings from the log files
if
(
/"SELECT UNIX_TIMESTAMP()" failed on master/
or
/Aborted connection/
or
/Client requested master to start replication from impossible position/
or
/Could not find first log file name in binary log/
or
...
...
@@ -293,8 +295,8 @@ sub mtr_report_stats ($) {
/Error reading master configuration/
or
/Error reading packet/
or
/Event Scheduler/
or
/Failed to open the existing master info file/
or
/Failed to open log/
or
/Failed to open the existing master info file/
or
/Forcing shutdown of [0-9]* plugins/
or
/Got error [0-9]* when reading table/
or
/Incorrect definition of table/
or
...
...
@@ -304,25 +306,30 @@ sub mtr_report_stats ($) {
/Lock wait timeout exceeded/
or
/Log entry on master is longer than max_allowed_packet/
or
/NDB Binlog:/
or
/NDB: failed to setup table/
or
/NDB: only row based binary logging/
or
/Neither --relay-log nor --relay-log-index were used/
or
/Query partially completed/
or
/Slave I.O thread aborted while waiting for relay log/
or
/Slave SQL thread is stopped because UNTIL condition/
or
/Slave SQL thread retried transaction/
or
/Slave \(additional info\)/
or
/Slave: .*Duplicate column name/
or
/Slave: .*master may suffer from/
or
/Slave: According to the master's version/
or
/Slave: Column [0-9]* type mismatch/
or
/Slave: Error .* doesn't exist/
or
/Slave: Error .*Deadlock found/
or
/Slave: Error .*Unknown table/
or
/Slave: Error in Write_rows event: /
or
/Slave: Field .* of table .* has no default value/
or
/Slave: Query caused different errors on master and slave/
or
/Slave: Table .* doesn't exist/
or
/Slave: Table width mismatch/
or
/Slave: The incident LOST_EVENTS occured on the master/
or
/Slave: Unknown error.* 1105/
or
/Slave: .*master may suffer from/
or
/Slave: Error in Write_rows event: /
or
/Slave: Table width mismatch/
or
/Slave: Error .* doesn't exist/
or
/Slave: Column [0-9]* type mismatch/
or
/Slave: Table .* doesn't exist/
or
/Slave: Field .* of table .* has no default value/
or
/Sort aborted/
or
/Time-out in NDB/
or
/Warning:\s+One can only use the --user.*root/
or
/Warning:\s+Setting lower_case_table_names=2/
or
/Warning:\s+Table:.* on (delete|rename)/
or
...
...
mysys/my_compress.c
View file @
8449dd57
...
...
@@ -68,7 +68,7 @@ uchar *my_compress_alloc(const uchar *packet, size_t *len, size_t *complen)
return
0
;
/* Not enough memory */
tmp_complen
=
*
complen
;
res
=
compress
((
Bytef
*
)
compbuf
,
&
tmp_complen
,
(
Bytef
*
)
packet
,
*
len
);
res
=
compress
((
Bytef
*
)
compbuf
,
&
tmp_complen
,
(
Bytef
*
)
packet
,
(
uLong
)
*
len
);
*
complen
=
tmp_complen
;
if
(
res
!=
Z_OK
)
...
...
@@ -120,7 +120,7 @@ my_bool my_uncompress(uchar *packet, size_t len, size_t *complen)
tmp_complen
=
*
complen
;
error
=
uncompress
((
Bytef
*
)
compbuf
,
&
tmp_complen
,
(
Bytef
*
)
packet
,
len
);
(
uLong
)
len
);
*
complen
=
tmp_complen
;
if
(
error
!=
Z_OK
)
{
/* Probably wrong packet */
...
...
sql/sql_class.cc
View file @
8449dd57
...
...
@@ -927,7 +927,7 @@ void THD::add_changed_table(TABLE *table)
DBUG_ASSERT
((
options
&
(
OPTION_NOT_AUTOCOMMIT
|
OPTION_BEGIN
))
&&
table
->
file
->
has_transactions
());
add_changed_table
(
table
->
s
->
table_cache_key
.
str
,
table
->
s
->
table_cache_key
.
length
);
(
long
)
table
->
s
->
table_cache_key
.
length
);
DBUG_VOID_RETURN
;
}
...
...
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