1
0
mirror of synced 2024-12-13 14:56:01 +03:00

Added supported array to pgsql driver

This commit is contained in:
zYne 2006-11-01 10:12:34 +00:00
parent 466b0be17d
commit 1df7817b37

View File

@ -39,6 +39,26 @@ class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common {
*/
public function __construct(Doctrine_Manager $manager, PDO $pdo) {
// initialize all driver options
$this->supported = array(
'sequences' => true,
'indexes' => true,
'affected_rows' => true,
'summary_functions' => true,
'order_by_text' => true,
'transactions' => true,
'savepoints' => true,
'current_id' => true,
'limit_queries' => true,
'LOBs' => true,
'replace' => 'emulated',
'sub_selects' => true,
'auto_increment' => 'emulated',
'primary_key' => true,
'result_introspection' => true,
'prepared_statements' => true,
'identifier_quoting' => true,
'pattern_escaping' => true,
);
parent::__construct($manager, $pdo);
}