diff options
author | unknown <mats@romeo.(none)> | 2006-12-11 12:22:21 +0100 |
---|---|---|
committer | unknown <mats@romeo.(none)> | 2006-12-11 12:22:21 +0100 |
commit | 6a39c9e6b852c85d41cdd6925589ab08f5f5d8f0 (patch) | |
tree | 841625c451203bccaf4efa65044c3b5fb9566ec3 /sql/field.h | |
parent | 009c88db208ffc6673a59af363dbf792b679e5ed (diff) | |
parent | 4924c61999cac4738f7f4a7422d600e0b7dcf3a3 (diff) | |
download | mariadb-git-6a39c9e6b852c85d41cdd6925589ab08f5f5d8f0.tar.gz |
Merging with mysql-5.1-new-rpl
Diffstat (limited to 'sql/field.h')
-rw-r--r-- | sql/field.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/field.h b/sql/field.h index 3e2be248627..70c27e92f01 100644 --- a/sql/field.h +++ b/sql/field.h @@ -1491,6 +1491,13 @@ private: }; +/** + BIT field represented as chars for non-MyISAM tables. + + @todo The inheritance relationship is backwards since Field_bit is + an extended version of Field_bit_as_char and not the other way + around. Hence, we should refactor it to fix the hierarchy order. + */ class Field_bit_as_char: public Field_bit { public: Field_bit_as_char(char *ptr_arg, uint32 len_arg, uchar *null_ptr_arg, |