diff options
author | unknown <tulin@dl145c.mysql.com> | 2005-09-14 13:24:41 +0200 |
---|---|---|
committer | unknown <tulin@dl145c.mysql.com> | 2005-09-14 13:24:41 +0200 |
commit | e2b72d815f7a66412000fd22bca898fb0406dfdb (patch) | |
tree | 6adc488aead1626c39b8e9e956d90e45816a645d /sql | |
parent | e7d7e0e92f34d3a68d16b802f76e97076dbb6088 (diff) | |
download | mariadb-git-e2b72d815f7a66412000fd22bca898fb0406dfdb.tar.gz |
(corrected typo in prev patch) Bug #13152 bit fields and fileds that follow become corrupted when dumped from NDB
Diffstat (limited to 'sql')
-rw-r--r-- | sql/table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc index 52521755b69..be89081af8c 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -287,7 +287,7 @@ int openfrm(THD *thd, const char *name, const char *alias, uint db_stat, keynames=(char*) key_part; strpos+= (strmov(keynames, (char *) strpos) - keynames)+1; - share->null_bytes == (null_pos-(uchar*)outparam->null_flags + (null_bit_pos + 7) / 8); + share->null_bytes= (null_pos-(uchar*)outparam->null_flags + (null_bit_pos + 7) / 8); share->reclength = uint2korr((head+16)); if (*(head+26) == 1) |