File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2959,11 +2959,6 @@ class Field_blob :public Field_longstr {
2959
2959
*/
2960
2960
String value;
2961
2961
2962
- void store_length (uchar *i_ptr, uint i_packlength, uint32 i_number);
2963
- inline void store_length (uint32 number)
2964
- {
2965
- store_length (ptr, packlength, number);
2966
- }
2967
2962
public:
2968
2963
Field_blob (uchar *ptr_arg, uchar *null_ptr_arg, uchar null_bit_arg,
2969
2964
enum utype unireg_check_arg, const char *field_name_arg,
@@ -3041,6 +3036,11 @@ class Field_blob :public Field_longstr {
3041
3036
int reset (void ) { bzero (ptr, packlength+sizeof (uchar*)); return 0 ; }
3042
3037
void reset_fields () { bzero ((uchar*) &value,sizeof (value)); }
3043
3038
uint32 get_field_buffer_size (void ) { return value.alloced_length (); }
3039
+ void store_length (uchar *i_ptr, uint i_packlength, uint32 i_number);
3040
+ inline void store_length (uint32 number)
3041
+ {
3042
+ store_length (ptr, packlength, number);
3043
+ }
3044
3044
inline uint32 get_length (uint row_offset= 0 )
3045
3045
{ return get_length (ptr+row_offset, this ->packlength ); }
3046
3046
uint32 get_length (const uchar *ptr, uint packlength);
You can’t perform that action at this time.
0 commit comments