2013-02-25 02:19:49 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
|
*
|
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
|
* @license AGPL-3.0
|
|
|
|
|
*
|
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
*
|
2013-02-25 02:19:49 -05:00
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
|
|
|
|
|
2013-02-25 02:19:49 -05:00
|
|
|
namespace OC\DB;
|
|
|
|
|
|
|
|
|
|
class AdapterPgSql extends Adapter {
|
2013-03-22 13:36:40 -04:00
|
|
|
public function lastInsertId($table) {
|
|
|
|
|
return $this->conn->fetchColumn('SELECT lastval()');
|
|
|
|
|
}
|
2013-02-25 16:49:55 -05:00
|
|
|
|
2013-08-07 12:16:34 -04:00
|
|
|
const UNIX_TIMESTAMP_REPLACEMENT = 'cast(extract(epoch from current_timestamp) as integer)';
|
2013-02-25 16:49:55 -05:00
|
|
|
public function fixupStatement($statement) {
|
|
|
|
|
$statement = str_replace( '`', '"', $statement );
|
2013-08-07 12:16:34 -04:00
|
|
|
$statement = str_ireplace( 'UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement );
|
2013-02-25 16:49:55 -05:00
|
|
|
return $statement;
|
|
|
|
|
}
|
2013-02-25 02:19:49 -05:00
|
|
|
}
|