1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
namespace Doctrine\DBAL\Tests\Functional\Platform;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\MySqlPlatform;
use Doctrine\DBAL\Schema\Comparator;
use Doctrine\DBAL\Tests\FunctionalTestCase;
final class NewPrimaryKeyWithNewAutoIncrementColumnTest extends FunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
if ($this->getPlatform() instanceof MySqlPlatform) {
return;
}
self::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(): void
{
$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->executeStatement($sql);
}
$validationSchema = $schemaManager->createSchema();
$validationTable = $validationSchema->getTable($table->getName());
self::assertTrue($validationTable->hasColumn('new_id'));
self::assertTrue($validationTable->getColumn('new_id')->getAutoincrement());
self::assertTrue($validationTable->hasPrimaryKey());
self::assertSame(['new_id'], $validationTable->getPrimaryKeyColumns());
}
private function getPlatform(): AbstractPlatform
{
return $this->connection->getDatabasePlatform();
}
}