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 68 69 70 71 72
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Functional\Platform;
use Doctrine\DBAL\Platforms\AbstractMySQLPlatform;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Types\Types;
use PHPUnit\Framework\Attributes\RequiresPhpunit;
final class NewPrimaryKeyWithNewAutoIncrementColumnTest extends FunctionalTestCase
{
protected function setUp(): void
{
if ($this->getPlatform() instanceof AbstractMySQLPlatform) {
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
*/
#[RequiresPhpunit('< 11.5.18')]
public function testAlterPrimaryKeyToAutoIncrementColumn(): void
{
$this->dropTableIfExists('dbal2807');
$schemaManager = $this->connection->createSchemaManager();
$schema = $schemaManager->introspectSchema();
$table = $schema->createTable('dbal2807');
$table->addColumn('initial_id', Types::INTEGER);
$table->setPrimaryKey(['initial_id']);
$schemaManager->createTable($table);
$newSchema = clone $schema;
$newTable = $newSchema->getTable($table->getName());
$newTable->addColumn('new_id', Types::INTEGER, ['autoincrement' => true]);
$newTable->dropPrimaryKey();
$newTable->setPrimaryKey(['new_id']);
$diff = $schemaManager->createComparator()
->compareSchemas($schema, $newSchema);
$schemaManager->alterSchema($diff);
$validationSchema = $schemaManager->introspectSchema();
$validationTable = $validationSchema->getTable($table->getName());
self::assertTrue($validationTable->hasColumn('new_id'));
self::assertTrue($validationTable->getColumn('new_id')->getAutoincrement());
$primaryKey = $validationTable->getPrimaryKey();
self::assertNotNull($primaryKey);
self::assertSame(['new_id'], $primaryKey->getColumns());
}
private function getPlatform(): AbstractPlatform
{
return $this->connection->getDatabasePlatform();
}
}
|