diff options
author | mronstrom@mysql.com <> | 2005-04-28 14:45:27 +0200 |
---|---|---|
committer | mronstrom@mysql.com <> | 2005-04-28 14:45:27 +0200 |
commit | 21347433cff264b04c61c4aa5392516e9a4c9354 (patch) | |
tree | 30a6cdfc61027e36d6f12f18f8c598e0a610499c /sql/field.h | |
parent | 2ac4cf518703b35ac06da5698e90556a534fd9d8 (diff) | |
download | mariadb-git-21347433cff264b04c61c4aa5392516e9a4c9354.tar.gz |
WL 1682: Use bitvector instead of query_id to tell handler which fields
to read and write
Changed Server code, added new interface to handler and changed the
NDB handler, InnoDB handler and Federated handler that previously used
query_id
Bug#10202 fix (one-liner fix for memory leak)
Diffstat (limited to 'sql/field.h')
-rw-r--r-- | sql/field.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/field.h b/sql/field.h index 22787850442..f7ed6592a6d 100644 --- a/sql/field.h +++ b/sql/field.h @@ -86,6 +86,7 @@ public: utype unireg_check; uint32 field_length; // Length of field uint16 flags; + uint16 fieldnr; // Field number uchar null_bit; // Bit used to test null bit Field(char *ptr_arg,uint32 length_arg,uchar *null_ptr_arg,uchar null_bit_arg, |