2018-12-06 22:46:00 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2018-12-12 17:42:40 +00:00
|
|
|
namespace JKingWeb\Arsse\TestCase\Db\PostgreSQLPDO;
|
2018-12-06 22:46:00 +00:00
|
|
|
|
|
|
|
/**
|
2018-12-10 17:39:09 +00:00
|
|
|
* @group slow
|
2020-11-03 22:52:20 +00:00
|
|
|
* @covers \JKingWeb\Arsse\Db\PostgreSQL\PDOResult<extended>
|
2018-12-06 22:46:00 +00:00
|
|
|
*/
|
|
|
|
class TestResult extends \JKingWeb\Arsse\TestCase\Db\BaseResult {
|
2019-08-25 17:19:11 +00:00
|
|
|
use \JKingWeb\Arsse\Test\DatabaseDrivers\PostgreSQLPDO;
|
2019-01-12 17:43:06 +00:00
|
|
|
|
2018-12-06 22:46:00 +00:00
|
|
|
protected static $createMeta = "CREATE TABLE arsse_meta(key text primary key not null, value text)";
|
|
|
|
protected static $createTest = "CREATE TABLE arsse_test(id bigserial primary key)";
|
2020-11-03 22:52:20 +00:00
|
|
|
protected static $selectBlob = "SELECT '\\xDEADBEEF'::bytea as blob";
|
2018-12-06 22:46:00 +00:00
|
|
|
|
|
|
|
protected function makeResult(string $q): array {
|
|
|
|
$set = static::$interface->query($q);
|
|
|
|
return [static::$interface, $set];
|
|
|
|
}
|
|
|
|
}
|