summaryrefslogtreecommitdiff
path: root/sql/field.h
diff options
context:
space:
mode:
authorKristofer Pettersson <kpettersson@mysql.com>2008-09-20 16:52:34 +0200
committerKristofer Pettersson <kpettersson@mysql.com>2008-09-20 16:52:34 +0200
commit153e8e7c0774cf617c48f23f83e14abd9ccc7f83 (patch)
treeb5caadc16a24fa605d85a84463ed472803330eaf /sql/field.h
parent88ec0a0ce8d1460377de9971e6df003e5a58371f (diff)
parent119c5aaeba2b35f201bdbd98c0714be9b6a780fb (diff)
downloadmariadb-git-153e8e7c0774cf617c48f23f83e14abd9ccc7f83.tar.gz
Merge 5.0-bugteam -> 5.1-bugteam
Diffstat (limited to 'sql/field.h')
-rw-r--r--sql/field.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/sql/field.h b/sql/field.h
index 0d0d7fba116..aa69fea6bdd 100644
--- a/sql/field.h
+++ b/sql/field.h
@@ -1597,8 +1597,16 @@ private:
class Field_blob :public Field_longstr {
protected:
+ /**
+ The number of bytes used to represent the length of the blob.
+ */
uint packlength;
- String value; // For temporaries
+
+ /**
+ The 'value'-object is a cache fronting the storage engine.
+ */
+ String value;
+
public:
Field_blob(uchar *ptr_arg, uchar *null_ptr_arg, uchar null_bit_arg,
enum utype unireg_check_arg, const char *field_name_arg,