-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5407 from jongotlin/jongotlin-patch-1
Create sequences before tables
- Loading branch information
Showing
4 changed files
with
48 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
|
||
namespace Doctrine\DBAL\Tests\Functional\Schema\PostgreSQL; | ||
|
||
use Doctrine\DBAL\Platforms\PostgreSQLPlatform; | ||
use Doctrine\DBAL\Schema\Column; | ||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\DBAL\Schema\Sequence; | ||
use Doctrine\DBAL\Schema\Table; | ||
use Doctrine\DBAL\Tests\FunctionalTestCase; | ||
use Doctrine\DBAL\Types\IntegerType; | ||
|
||
final class SchemaTest extends FunctionalTestCase | ||
{ | ||
public function testCreateTableWithSequenceInColumnDefinition(): void | ||
{ | ||
$platform = $this->connection->getDatabasePlatform(); | ||
|
||
if (! $platform instanceof PostgreSQLPlatform) { | ||
self::markTestSkipped('Test is for PostgreSQL.'); | ||
} | ||
|
||
$this->dropTableIfExists('my_table'); | ||
|
||
$options = ['default' => 'nextval(\'my_table_id_seq\'::regclass)']; | ||
$table = new Table('my_table', [new Column('id', new IntegerType(), $options)]); | ||
$sequence = new Sequence('my_table_id_seq'); | ||
|
||
$schema = new Schema([$table], [$sequence]); | ||
foreach ($schema->toSql($platform) as $sql) { | ||
$this->connection->executeStatement($sql); | ||
} | ||
|
||
$result = $this->connection->fetchAssociative( | ||
'SELECT column_default FROM information_schema.columns WHERE table_name = ?', | ||
['my_table'] | ||
); | ||
|
||
$this->assertNotFalse($result); | ||
$this->assertEquals('nextval(\'my_table_id_seq\'::regclass)', $result['column_default']); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters