2018-11-29 18:45:37 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\Db\PostgreSQL;
|
|
|
|
|
2019-01-11 00:01:32 +00:00
|
|
|
class PDOStatement extends \JKingWeb\Arsse\Db\PDOStatement {
|
2018-12-21 17:35:10 +00:00
|
|
|
public static function mungeQuery(string $query, array $types, ...$extraData): string {
|
|
|
|
return Statement::mungeQuery($query, $types, false);
|
2018-11-29 18:45:37 +00:00
|
|
|
}
|
2019-01-11 00:01:32 +00:00
|
|
|
|
2019-01-15 13:58:11 +00:00
|
|
|
/** @codeCoverageIgnore */
|
2019-01-11 00:01:32 +00:00
|
|
|
public static function buildEngineException($code, string $msg): array {
|
|
|
|
// PostgreSQL uses SQLSTATE exclusively, so this is not used
|
|
|
|
return [];
|
|
|
|
}
|
2018-11-29 18:45:37 +00:00
|
|
|
}
|