2013-02-25 11:19:49 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
*
|
|
|
|
* @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 11:19:49 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
|
2013-02-25 11:19:49 +04:00
|
|
|
namespace OC\DB;
|
|
|
|
|
|
|
|
class AdapterPgSql extends Adapter {
|
2013-03-22 21:36:40 +04:00
|
|
|
public function lastInsertId($table) {
|
|
|
|
return $this->conn->fetchColumn('SELECT lastval()');
|
|
|
|
}
|
2013-02-26 01:49:55 +04:00
|
|
|
|
2013-08-07 20:16:34 +04:00
|
|
|
const UNIX_TIMESTAMP_REPLACEMENT = 'cast(extract(epoch from current_timestamp) as integer)';
|
2013-02-26 01:49:55 +04:00
|
|
|
public function fixupStatement($statement) {
|
|
|
|
$statement = str_replace( '`', '"', $statement );
|
2013-08-07 20:16:34 +04:00
|
|
|
$statement = str_ireplace( 'UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement );
|
2013-02-26 01:49:55 +04:00
|
|
|
return $statement;
|
|
|
|
}
|
2013-02-25 11:19:49 +04:00
|
|
|
}
|