summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mysql/mysql_driver.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-06-08 10:06:59 +0200
committerAndrey Andreev <narf@devilix.net>2016-06-08 10:06:59 +0200
commited6f01077abb8946b54413d383fa1b7b46cd3d1f (patch)
tree96e2953ae40ab8e6161746ea9cd33566f02c4b56 /system/database/drivers/mysql/mysql_driver.php
parent83630055ab671867b14f02d45370eb0bc41a0cb0 (diff)
Make db_select() clear cached database metadata
Diffstat (limited to 'system/database/drivers/mysql/mysql_driver.php')
-rw-r--r--system/database/drivers/mysql/mysql_driver.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php
index 78b1d703a..7804dda58 100644
--- a/system/database/drivers/mysql/mysql_driver.php
+++ b/system/database/drivers/mysql/mysql_driver.php
@@ -208,6 +208,7 @@ class CI_DB_mysql_driver extends CI_DB {
if (mysql_select_db($database, $this->conn_id))
{
$this->database = $database;
+ $this->data_cache = array();
return TRUE;
}