diff options
author | Andrey Hristov <andrey@php.net> | 2009-12-09 20:21:05 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2009-12-09 20:21:05 +0000 |
commit | 6f598e62ff8b32af98d23b79d609303b08e439c1 (patch) | |
tree | 29e6194bcfcf70b27c72fbeaf8e8c6ea62f078f8 /ext/mysqli/php_mysqli_structs.h | |
parent | d8a8d823ce76bac09826334dce5f250388e79a24 (diff) | |
download | php-git-6f598e62ff8b32af98d23b79d609303b08e439c1.tar.gz |
Remove the zval caching from mysqlnd. It was disabled versions ago
due to problems on windows, which were not debugged. Better have
code that is disabled not in the core.
Diffstat (limited to 'ext/mysqli/php_mysqli_structs.h')
-rw-r--r-- | ext/mysqli/php_mysqli_structs.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/mysqli/php_mysqli_structs.h b/ext/mysqli/php_mysqli_structs.h index aa57ad06a7..e9d76b0289 100644 --- a/ext/mysqli/php_mysqli_structs.h +++ b/ext/mysqli/php_mysqli_structs.h @@ -197,7 +197,6 @@ extern zend_property_info mysqli_driver_property_info_entries[]; extern zend_property_info mysqli_warning_property_info_entries[]; #ifdef MYSQLI_USE_MYSQLND -extern MYSQLND_ZVAL_PCACHE *mysqli_mysqlnd_zval_cache; extern MYSQLND_QCACHE *mysqli_mysqlnd_qcache; #endif @@ -367,9 +366,6 @@ ZEND_BEGIN_MODULE_GLOBALS(mysqli) HashTable *report_ht; unsigned long multi_query; unsigned long embedded; -#ifdef MYSQLI_USE_MYSQLND - MYSQLND_THD_ZVAL_PCACHE *mysqlnd_thd_zval_cache; -#endif ZEND_END_MODULE_GLOBALS(mysqli) |