diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-04-09 15:31:50 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-04-09 15:31:50 +0200 |
commit | 2271874d9c2bb4d5959f4287dea3c7c3b5b0c732 (patch) | |
tree | 2497c63c3252b1ace676c07585f32611b84cb16d /system/database/drivers/postgre/postgre_utility.php | |
parent | 8e160e471259ad01c0e994e7ce5797c2a51afd7a (diff) | |
parent | 918be7963f6fa3461d612ea7ca4c9774c12f9da5 (diff) |
Merge upstream branch
Diffstat (limited to 'system/database/drivers/postgre/postgre_utility.php')
-rw-r--r-- | system/database/drivers/postgre/postgre_utility.php | 41 |
1 files changed, 3 insertions, 38 deletions
diff --git a/system/database/drivers/postgre/postgre_utility.php b/system/database/drivers/postgre/postgre_utility.php index cf29201ff..c95e6df0c 100644 --- a/system/database/drivers/postgre/postgre_utility.php +++ b/system/database/drivers/postgre/postgre_utility.php @@ -34,43 +34,8 @@ */ class CI_DB_postgre_utility extends CI_DB_utility { - /** - * List databases - * - * @return string - */ - public function _list_databases() - { - return 'SELECT datname FROM pg_database'; - } - - // -------------------------------------------------------------------- - - /** - * Optimize table query - * - * @param string the table name - * @return string - */ - public function _optimize_table($table) - { - return 'REINDEX TABLE '.$this->db->protect_identifiers($table); - } - - // -------------------------------------------------------------------- - - /** - * Repair table query - * - * @param string the table name - * @return bool - */ - public function _repair_table($table) - { - return FALSE; - } - - // -------------------------------------------------------------------- + protected $_list_databases = 'SELECT datname FROM pg_database'; + protected $_optimize_table = 'REINDEX TABLE %s'; /** * Postgre Export @@ -78,7 +43,7 @@ class CI_DB_postgre_utility extends CI_DB_utility { * @param array Preferences * @return mixed */ - public function _backup($params = array()) + protected function _backup($params = array()) { // Currently unsupported return $this->db->display_error('db_unsuported_feature'); |