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
81a3130d
Commit
81a3130d
authored
Jun 05, 2002
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spurious binlog error code logging on temp table auto-drop fixed
added a new replication test
parent
5f93b1e4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
0 deletions
+26
-0
mysql-test/r/rpl_alter.result
mysql-test/r/rpl_alter.result
+4
-0
mysql-test/t/rpl_alter.test
mysql-test/t/rpl_alter.test
+21
-0
sql/sql_base.cc
sql/sql_base.cc
+1
-0
No files found.
mysql-test/r/rpl_alter.result
0 → 100644
View file @
81a3130d
n m
1 2
n
45
mysql-test/t/rpl_alter.test
0 → 100644
View file @
81a3130d
source
include
/
master
-
slave
.
inc
;
connection
master
;
use
test
;
drop
database
if
exists
d1
;
create
database
d1
;
create
table
d1
.
t1
(
n
int
);
alter
table
d1
.
t1
add
m
int
;
insert
into
d1
.
t1
values
(
1
,
2
);
create
table
d1
.
t2
(
n
int
);
insert
into
d1
.
t2
values
(
45
);
rename
table
d1
.
t2
to
d1
.
t3
,
d1
.
t1
to
d1
.
t2
;
save_master_pos
;
connection
slave
;
sync_with_master
;
select
*
from
d1
.
t2
;
select
*
from
d1
.
t3
;
connection
master
;
drop
database
d1
;
save_master_pos
;
connection
slave
;
sync_with_master
;
sql/sql_base.cc
View file @
81a3130d
...
...
@@ -546,6 +546,7 @@ void close_temporary_tables(THD *thd)
*--
end
=
0
;
// Remove last ','
thd
->
query_length
=
(
uint
)(
end
-
query
);
Query_log_event
qinfo
(
thd
,
query
);
qinfo
.
error_code
=
0
;
mysql_bin_log
.
write
(
&
qinfo
);
thd
->
query_length
=
save_query_len
;
}
...
...
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