summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_structs.h
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2008-01-28 22:54:21 +0000
committerAndrey Hristov <andrey@php.net>2008-01-28 22:54:21 +0000
commit6d9fdbce50d17240341119036c01303649892ddc (patch)
tree7da94b44ce5a367b21cc8d4df46ef454bb30e4a0 /ext/mysqlnd/mysqlnd_structs.h
parente3492e6d01a2053956fa664a0bf5f9943ce5705e (diff)
downloadphp-git-6d9fdbce50d17240341119036c01303649892ddc.tar.gz
MFB:
some config.w32 fixes moved mysqlnd's block allocator to a separate file and also now it's part of the connection, no MT problems.
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r--ext/mysqlnd/mysqlnd_structs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h
index 4d81c287cc..8fca5f7ce3 100644
--- a/ext/mysqlnd/mysqlnd_structs.h
+++ b/ext/mysqlnd/mysqlnd_structs.h
@@ -41,7 +41,6 @@ struct st_mysqlnd_memory_pool
uint free_chunk_list_elements;
MYSQLND_MEMORY_POOL_CHUNK* (*get_chunk)(MYSQLND_MEMORY_POOL * pool, uint size TSRMLS_DC);
- void (*free_contents)(MYSQLND_MEMORY_POOL * pool TSRMLS_DC);
};
struct st_mysqlnd_memory_pool_chunk
@@ -444,6 +443,8 @@ struct st_mysqlnd_connection
/* qcache */
MYSQLND_QCACHE *qcache;
+ MYSQLND_MEMORY_POOL * result_set_memory_pool;
+
/* stats */
MYSQLND_STATS stats;