db->_escape_table($name)." CASCADE"; } // -------------------------------------------------------------------- /** * Optimize table query * * Is table optimization supported in Postgre? * * @access private * @param string the table name * @return object */ function _optimize_table($table) { return FALSE; } // -------------------------------------------------------------------- /** * Repair table query * * Are table repairs supported in Postgre? * * @access private * @param string the table name * @return object */ function _repair_table($table) { return return FALSE; } // -------------------------------------------------------------------- /** * Postgre Export * * @access private * @param array Preferences * @return mixed */ function _backup($params = array()) { // Currently unsupported return $this->db->display_error('db_unsuported_feature'); } } ?>