-
-
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 #3311 from arnegroskurth/alter-pk-with-ai
Fix: Ensuring correct ALTER TABLE statement for creation of an AUTO INCREMENT column as new PRIMARY KEY
- Loading branch information
Showing
2 changed files
with
80 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
69 changes: 69 additions & 0 deletions
69
...s/Doctrine/Tests/DBAL/Functional/Platform/NewPrimaryKeyWithNewAutoIncrementColumnTest.php
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,69 @@ | ||
<?php | ||
|
||
namespace Doctrine\Tests\DBAL\Functional\Platform; | ||
|
||
use Doctrine\DBAL\Schema\Comparator; | ||
use Doctrine\Tests\DbalFunctionalTestCase; | ||
use function in_array; | ||
|
||
final class NewPrimaryKeyWithNewAutoIncrementColumnTest extends DbalFunctionalTestCase | ||
{ | ||
/** | ||
* {@inheritDoc} | ||
*/ | ||
protected function setUp() | ||
{ | ||
parent::setUp(); | ||
|
||
if (in_array($this->getPlatform()->getName(), ['mysql'])) { | ||
return; | ||
} | ||
|
||
$this->markTestSkipped('Restricted to MySQL.'); | ||
} | ||
|
||
/** | ||
* Ensures that the primary key is created within the same "alter table" statement that an auto-increment column | ||
* is added to the table as part of the new primary key. | ||
* | ||
* Before the fix for this problem this resulted in a database error: (at least on mysql) | ||
* SQLSTATE[42000]: Syntax error or access violation: 1075 Incorrect table definition; there can be only one auto | ||
* column and it must be defined as a key | ||
*/ | ||
public function testAlterPrimaryKeyToAutoIncrementColumn() | ||
{ | ||
$schemaManager = $this->connection->getSchemaManager(); | ||
$schema = $schemaManager->createSchema(); | ||
|
||
$table = $schema->createTable('dbal2807'); | ||
$table->addColumn('initial_id', 'integer'); | ||
$table->setPrimaryKey(['initial_id']); | ||
|
||
$schemaManager->dropAndCreateTable($table); | ||
|
||
$newSchema = clone $schema; | ||
$newTable = $newSchema->getTable($table->getName()); | ||
$newTable->addColumn('new_id', 'integer', ['autoincrement' => true]); | ||
$newTable->dropPrimaryKey(); | ||
$newTable->setPrimaryKey(['new_id']); | ||
|
||
$diff = (new Comparator())->compare($schema, $newSchema); | ||
|
||
foreach ($diff->toSql($this->getPlatform()) as $sql) { | ||
$this->connection->exec($sql); | ||
} | ||
|
||
$validationSchema = $schemaManager->createSchema(); | ||
$validationTable = $validationSchema->getTable($table->getName()); | ||
|
||
$this->assertTrue($validationTable->hasColumn('new_id')); | ||
$this->assertTrue($validationTable->getColumn('new_id')->getAutoincrement()); | ||
$this->assertTrue($validationTable->hasPrimaryKey()); | ||
$this->assertSame(['new_id'], $validationTable->getPrimaryKeyColumns()); | ||
} | ||
|
||
private function getPlatform() | ||
{ | ||
return $this->connection->getDatabasePlatform(); | ||
} | ||
} |