-
-
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.
Ensure PostgreSQL field length change is executed again
With #6280 quite some changes has been applied, which removed the code path to create alter sql statement if length of a field has changed. This change adds a general test for this case and reimplement the accidently removed code from the `PostgreSQLPlatform`.
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 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,39 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Tests\Functional\Platform; | ||
|
||
use Doctrine\DBAL\Schema\Table; | ||
use Doctrine\DBAL\Tests\FunctionalTestCase; | ||
use Doctrine\DBAL\Types\Types; | ||
|
||
class AlterColumnLengthChangeTest extends FunctionalTestCase | ||
{ | ||
public function testColumnLengthIsChanged(): void | ||
{ | ||
$table = new Table('test_alter_length'); | ||
$table->addColumn('c1', Types::STRING)->setLength(50); | ||
|
||
$this->dropAndCreateTable($table); | ||
|
||
$sm = $this->connection->createSchemaManager(); | ||
$table = $sm->introspectTable('test_alter_length'); | ||
$columns = $table->getColumns(); | ||
self::assertCount(1, $columns); | ||
self::assertSame(50, $columns[0]->getLength()); | ||
|
||
$table->getColumn('c1')->setLength(100); | ||
|
||
$diff = $sm->createComparator() | ||
->compareTables($sm->introspectTable('test_alter_length'), $table); | ||
|
||
$sm->alterTable($diff); | ||
|
||
$table = $sm->introspectTable('test_alter_length'); | ||
$columns = $table->getColumns(); | ||
|
||
self::assertCount(1, $columns); | ||
self::assertSame(100, $columns[0]->getLength()); | ||
} | ||
} |