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
89df5b6b
Commit
89df5b6b
authored
May 04, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug (colcnt) + compile fix
parent
77c4a2ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+1
-0
sql/log_event.cc
sql/log_event.cc
+3
-2
No files found.
mysql-test/t/disabled.def
View file @
89df5b6b
...
...
@@ -24,6 +24,7 @@ rpl_deadlock_innodb : BUG#16920 2006-04-12 kent fails in show slave stat
rpl_ndb_2innodb : BUG#19004 2006-03-22 tomas ndb: partition by range and update hangs
rpl_ndb_2myisam : BUG#19004 2006-03-22 tomas ndb: partition by range and update hangs
rpl_ndb_auto_inc : BUG#17086 2006-02-16 jmiller CR: auto_increment_increment and auto_increment_offset produce duplicate key er
rpl_ndb_commit_afterflush : LOCK TABLES cases hang in ndb injector thread
rpl_ndb_ddl : result file needs update + test needs to checked
rpl_ndb_innodb2ndb : BUG#18094 2006-03-16 mats Slave caches invalid table definition after atlters causes select failure
rpl_ndb_log : BUG#18947 2006-03-21 tomas CRBR: order in binlog of create table and insert (on different table) not determ
...
...
sql/log_event.cc
View file @
89df5b6b
...
...
@@ -5294,12 +5294,11 @@ unpack_row(RELAY_LOG_INFO *rli,
if
(
colcnt
==
0
)
break
;
--
colcnt
;
if
(
bitmap_is_set
(
cols
,
field_ptr
-
begin_ptr
))
{
/* Field...::unpack() cannot return 0 */
ptr
=
f
->
unpack
(
f
->
ptr
+
offset
,
ptr
);
--
colcnt
;
}
else
bitmap_clear_bit
(
write_set
,
(
field_ptr
-
begin_ptr
)
+
1
);
...
...
@@ -6076,6 +6075,7 @@ void Table_map_log_event::print(FILE *file, PRINT_EVENT_INFO *print_event_info)
}
#endif
#if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
#ifndef DBUG_OFF
static
void
print_column_values
(
char
const
*
text
,
THD
*
thd
,
TABLE
*
table
)
...
...
@@ -6094,6 +6094,7 @@ print_column_values(char const *text, THD *thd, TABLE *table)
table
->
in_use
=
old_thd
;
}
#endif
#endif
/**************************************************************************
Write_rows_log_event member functions
...
...
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