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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b7170cf9
Commit
b7170cf9
authored
Feb 19, 2001
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replication fixes
parent
28d23e87
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
4 deletions
+18
-4
Docs/manual.texi
Docs/manual.texi
+4
-1
mysql-test/r/rpl000016.result
mysql-test/r/rpl000016.result
+4
-0
mysql-test/t/rpl000016.test
mysql-test/t/rpl000016.test
+2
-0
sql/log_event.cc
sql/log_event.cc
+3
-2
sql/log_event.h
sql/log_event.h
+1
-1
sql/sql_repl.cc
sql/sql_repl.cc
+4
-0
No files found.
Docs/manual.texi
View file @
b7170cf9
...
@@ -41585,6 +41585,9 @@ not yet 100 % confident in this code.
...
@@ -41585,6 +41585,9 @@ not yet 100 % confident in this code.
@appendixsubsec Changes in release 3.23.34
@appendixsubsec Changes in release 3.23.34
@itemize @bullet
@itemize @bullet
@item
@item
Limit query length for replication by max_allowed_packet, not the arbitrary
limit of 4 MB
@item
Allow space around @code{=} in argument to @code{--set-variable}.
Allow space around @code{=} in argument to @code{--set-variable}.
@item
@item
Fixed problem in automatic repair that could let some threads in state
Fixed problem in automatic repair that could let some threads in state
...
@@ -41606,7 +41609,7 @@ Fixed that @code{mysqlbinlog} writes the timestamp value for each query.
...
@@ -41606,7 +41609,7 @@ Fixed that @code{mysqlbinlog} writes the timestamp value for each query.
This ensures that on gets same values for date functions like @code{NOW()}
This ensures that on gets same values for date functions like @code{NOW()}
when using @code{mysqlbinlog} to pipe the queries to another server.
when using @code{mysqlbinlog} to pipe the queries to another server.
@item
@item
Allow one to use @code{--skip-gem
e
ni}, @code{--skip-bdb} and
Allow one to use @code{--skip-gem
i
ni}, @code{--skip-bdb} and
@code{--skip-innobase} to @code{mysqld} even if these databases are not
@code{--skip-innobase} to @code{mysqld} even if these databases are not
compiled in @code{mysqld}.
compiled in @code{mysqld}.
@item
@item
mysql-test/r/rpl000016.result
View file @
b7170cf9
...
@@ -21,5 +21,9 @@ Log_name
...
@@ -21,5 +21,9 @@ Log_name
master-bin.003
master-bin.003
master-bin.004
master-bin.004
master-bin.005
master-bin.005
File Position Binlog_do_db Binlog_ignore_db
master-bin.005 1504
Master_Host Master_User Master_Port Connect_retry Log_File Pos Slave_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter
127.0.0.1 root 9306 60 master-bin.005 1504 Yes 0 0
count(*)
count(*)
100
100
mysql-test/t/rpl000016.test
View file @
b7170cf9
...
@@ -78,11 +78,13 @@ while ($1)
...
@@ -78,11 +78,13 @@ while ($1)
dec
$
1
;
dec
$
1
;
}
}
show
master
logs
;
show
master
logs
;
show
master
status
;
save_master_pos
;
save_master_pos
;
connection
slave
;
connection
slave
;
slave
stop
;
slave
stop
;
slave
start
;
slave
start
;
sync_with_master
;
sync_with_master
;
show
slave
status
;
select
count
(
*
)
from
t3
where
n
=
4
;
select
count
(
*
)
from
t3
where
n
=
4
;
#clean up
#clean up
connection
master
;
connection
master
;
...
...
sql/log_event.cc
View file @
b7170cf9
...
@@ -85,10 +85,11 @@ int Log_event::read_log_event(IO_CACHE* file, String* packet,
...
@@ -85,10 +85,11 @@ int Log_event::read_log_event(IO_CACHE* file, String* packet,
return
file
->
error
>
0
?
LOG_READ_TRUNC
:
LOG_READ_IO
;
return
file
->
error
>
0
?
LOG_READ_TRUNC
:
LOG_READ_IO
;
}
}
data_len
=
uint4korr
(
buf
+
EVENT_LEN_OFFSET
);
data_len
=
uint4korr
(
buf
+
EVENT_LEN_OFFSET
);
if
(
data_len
<
LOG_EVENT_HEADER_LEN
||
data_len
>
MAX_EVENT_LEN
)
if
(
data_len
<
LOG_EVENT_HEADER_LEN
||
data_len
>
max_allowed_packet
)
{
{
if
(
log_lock
)
pthread_mutex_unlock
(
log_lock
);
if
(
log_lock
)
pthread_mutex_unlock
(
log_lock
);
return
LOG_READ_BOGUS
;
return
(
data_len
<
LOG_EVENT_HEADER_LEN
)
?
LOG_READ_BOGUS
:
LOG_READ_TOO_LARGE
;
}
}
packet
->
append
(
buf
,
sizeof
(
buf
));
packet
->
append
(
buf
,
sizeof
(
buf
));
data_len
-=
LOG_EVENT_HEADER_LEN
;
data_len
-=
LOG_EVENT_HEADER_LEN
;
...
...
sql/log_event.h
View file @
b7170cf9
...
@@ -31,6 +31,7 @@
...
@@ -31,6 +31,7 @@
#define LOG_READ_IO -3
#define LOG_READ_IO -3
#define LOG_READ_MEM -5
#define LOG_READ_MEM -5
#define LOG_READ_TRUNC -6
#define LOG_READ_TRUNC -6
#define LOG_READ_TOO_LARGE -7
#define LOG_EVENT_OFFSET 4
#define LOG_EVENT_OFFSET 4
#define BINLOG_VERSION 1
#define BINLOG_VERSION 1
...
@@ -42,7 +43,6 @@
...
@@ -42,7 +43,6 @@
+ sizeof(uint32) + 2 + sizeof(uint32))
+ sizeof(uint32) + 2 + sizeof(uint32))
#define EVENT_LEN_OFFSET 9
#define EVENT_LEN_OFFSET 9
#define EVENT_TYPE_OFFSET 4
#define EVENT_TYPE_OFFSET 4
#define MAX_EVENT_LEN 4*1024*1024
#define QUERY_EVENT_OVERHEAD (LOG_EVENT_HEADER_LEN+QUERY_HEADER_LEN)
#define QUERY_EVENT_OVERHEAD (LOG_EVENT_HEADER_LEN+QUERY_HEADER_LEN)
#define ROTATE_EVENT_OVERHEAD LOG_EVENT_HEADER_LEN
#define ROTATE_EVENT_OVERHEAD LOG_EVENT_HEADER_LEN
#define LOAD_EVENT_OVERHEAD (LOG_EVENT_HEADER_LEN+LOAD_HEADER_LEN+sizeof(sql_ex_info))
#define LOAD_EVENT_OVERHEAD (LOG_EVENT_HEADER_LEN+LOAD_HEADER_LEN+sizeof(sql_ex_info))
...
...
sql/sql_repl.cc
View file @
b7170cf9
...
@@ -352,6 +352,10 @@ sweepstakes if you report the bug";
...
@@ -352,6 +352,10 @@ sweepstakes if you report the bug";
case
LOG_READ_BOGUS
:
case
LOG_READ_BOGUS
:
errmsg
=
"bogus data in log event"
;
errmsg
=
"bogus data in log event"
;
break
;
break
;
case
LOG_READ_TOO_LARGE
:
errmsg
=
"log event entry exceeded max_allowed_packet -\
increase max_allowed_packet on master"
;
break
;
case
LOG_READ_IO
:
case
LOG_READ_IO
:
errmsg
=
"I/O error reading log event"
;
errmsg
=
"I/O error reading log event"
;
break
;
break
;
...
...
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