diff options
author | Andrey Hristov <andrey@php.net> | 2016-12-12 21:59:29 +0200 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2016-12-12 21:59:29 +0200 |
commit | 9eca4dca73d9a6517f773134949bf8613a7eee13 (patch) | |
tree | 3b6507fa9b98184dd2d640b63adb7895e83f6dbc /ext/mysqlnd/mysqlnd_structs.h | |
parent | 3836c2faac71f7dfc19cc0749636489a8f3d536a (diff) | |
download | php-git-9eca4dca73d9a6517f773134949bf8613a7eee13.tar.gz |
Optimized memory handling of BIT fields. Less memory copies and less
memory usage.
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_structs.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h index 3f26425604..c4d7e550a3 100644 --- a/ext/mysqlnd/mysqlnd_structs.h +++ b/ext/mysqlnd/mysqlnd_structs.h @@ -1150,10 +1150,6 @@ struct st_mysqlnd_result_metadata MYSQLND_CLASS_METHODS_TYPE(mysqlnd_res_meta) * m; - size_t bit_fields_total_len; /* trailing \0 not counted */ - /* We need this to make fast allocs in rowp_read */ - unsigned int bit_fields_count; - unsigned int current_field; unsigned int field_count; |