2018-11-27 19:26:33 +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\TestCase\Db\PosgreSQL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \JKingWeb\Arsse\Database<extended>
|
|
|
|
* @covers \JKingWeb\Arsse\Misc\Query<extended>
|
|
|
|
*/
|
|
|
|
class TestDatabase extends \JKingWeb\Arsse\TestCase\Database\Base {
|
|
|
|
protected static $implementation = "PDO PostgreSQL";
|
|
|
|
|
|
|
|
protected function nextID(string $table): int {
|
2018-11-28 19:21:36 +00:00
|
|
|
return (int) static::$drv->query("SELECT cast(last_value as bigint) + 1 from pg_sequences where sequencename = '{$table}_id_seq'")->getValue();
|
2018-11-27 19:26:33 +00:00
|
|
|
}
|
|
|
|
}
|