2018-11-28 10:46:23 -05:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2021-04-14 11:17:01 -04:00
|
|
|
|
2018-12-12 12:42:40 -05:00
|
|
|
namespace JKingWeb\Arsse\TestCase\Db\PostgreSQLPDO;
|
2018-11-28 10:46:23 -05:00
|
|
|
|
2024-12-27 23:39:44 -05:00
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
|
|
|
|
|
|
#[Group("slow")]
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\Db\PostgreSQL\PDODriver::class)]
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\Db\PDODriver::class)]
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\Db\PDOError::class)]
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\Db\SQLState::class)]
|
2018-11-28 10:46:23 -05:00
|
|
|
class TestUpdate extends \JKingWeb\Arsse\TestCase\Db\BaseUpdate {
|
2019-08-25 13:19:11 -04:00
|
|
|
use \JKingWeb\Arsse\Test\DatabaseDrivers\PostgreSQLPDO;
|
2019-01-12 12:43:06 -05:00
|
|
|
|
2018-11-28 10:46:23 -05:00
|
|
|
protected static $minimal1 = "CREATE TABLE arsse_meta(key text primary key, value text); INSERT INTO arsse_meta(key,value) values('schema_version','1');";
|
|
|
|
protected static $minimal2 = "UPDATE arsse_meta set value = '2' where key = 'schema_version';";
|
|
|
|
}
|