use Doctrine\DBAL\Platforms\PostgreSQL100Platform;
6
7
class PostgreSQL100PlatformTest extends PostgreSQL94PlatformTest
8
{
9
/**
10
* {@inheritdoc}
11
*/
12
public function createPlatform() : PostgreSQL100Platform
13
{
14
return new PostgreSQL100Platform();
15
}
16
17
public function testGetSequenceMetadataSQL() : void
18
{
19
$this->assertSame("SELECT min_value, increment_by FROM pg_sequences WHERE schemaname = 'aSchemaName' AND sequencename = 'aSequenceName'", $this->_platform->getSequenceMetadataSQL('aSequenceName', 'aSchemaName'));