Below is the list of changes that have just been committed into a local
5.0 repository of mysqldev. When mysqldev does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2044 05/10/05 19:36:20 serg@stripped +1 -0
sql_table.cc:
fixed CHECKSUM TABLE to be independent from the first 'deleted' bit in the null bitmask (undefined in the InnoDB)
bug#13710
sql/sql_table.cc
1.276 05/10/05 19:34:21 serg@stripped +3 -0
fixed CHECKSUM TABLE to be independent from the first 'deleted' bit in the null bitmask (undefined in the InnoDB)
bug#13710
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: serg
# Host: production.mysql.com
# Root: /data0/mysqldev/my/mysql-5.0-release
--- 1.275/sql/sql_table.cc 2005-10-04 17:00:56 +02:00
+++ 1.276/sql/sql_table.cc 2005-10-05 19:34:21 +02:00
@@ -4125,6 +4125,9 @@
{
/* fix undefined null bits */
t->record[0][t->s->null_bytes-1] |= null_mask;
+ if (!(t->s->db_create_options & HA_OPTION_PACK_RECORD))
+ t->record[0][0] |= 1;
+
row_crc= my_checksum(row_crc, t->record[0], t->s->null_bytes);
}
Thread |
---|
• bk commit into 5.0 tree (serg:1.2044) BUG#13710 | serg | 5 Oct |