Additional Fix for BUG#40565 - Update Query Results in "1 Row Affected"
But Should Be "Zero Rows" After applying the innodb snapshot 5.0-ss5406 for bug#40565, the windows push build tests failed because of the missing cast of void * pointer in row0sel.c file Informed the innodb developers and received patch by email.
This commit is contained in:
parent
b21f60fb23
commit
5e0c653f03
@ -2527,7 +2527,8 @@ row_sel_store_mysql_rec(
|
||||
mysql_rec[templ->mysql_null_byte_offset] |=
|
||||
(byte) (templ->mysql_null_bit_mask);
|
||||
memcpy(mysql_rec + templ->mysql_col_offset,
|
||||
prebuilt->default_rec + templ->mysql_col_offset,
|
||||
(const byte*) prebuilt->default_rec
|
||||
+ templ->mysql_col_offset,
|
||||
templ->mysql_col_len);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user