Remove stub code which never actually was used for anything.

Things like this can be built on top of the core.
This commit is contained in:
Andrey Hristov 2009-12-09 20:38:11 +00:00
parent 52f573d629
commit 3a7f8ea575
11 changed files with 1 additions and 210 deletions

View file

@ -118,10 +118,6 @@ typedef struct _php_mysql_conn {
int multi_query;
} php_mysql_conn;
#ifdef MYSQL_USE_MYSQLND
static MYSQLND_QCACHE *mysql_mysqlnd_qcache;
#endif
#ifdef CLIENT_MULTI_STATEMENTS
#define MYSQL_DISABLE_MQ if (mysql->multi_query) { \
@ -452,8 +448,6 @@ ZEND_MODULE_STARTUP_D(mysql)
return FAILURE;
}
#endif
#else
mysql_mysqlnd_qcache = mysqlnd_qcache_init_cache();
#endif
return SUCCESS;
@ -479,8 +473,6 @@ PHP_MSHUTDOWN_FUNCTION(mysql)
mysql_server_end();
#endif
#endif
#else
mysqlnd_qcache_free_cache_reference(&mysql_mysqlnd_qcache);
#endif
UNREGISTER_INI_ENTRIES();