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
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Functional\Platform;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\ColumnEditor;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Types\Types;
use PHPUnit\Framework\Attributes\DataProvider;
use function sprintf;
class AlterDecimalColumnTest extends FunctionalTestCase
{
#[DataProvider('scaleAndPrecisionProvider')]
public function testAlterPrecisionAndScale(int $newPrecision, int $newScale, string $typeName): void
{
$table = Table::editor()
->setUnquotedName('decimal_table')
->setColumns(
Column::editor()
->setUnquotedName('val')
->setTypeName($typeName)
->setPrecision(16)
->setScale(6)
->create(),
)
->create();
$this->dropAndCreateTable($table);
$table = $table->edit()
->modifyColumnByUnquotedName(
'val',
static function (ColumnEditor $editor) use ($newPrecision, $newScale): void {
$editor
->setPrecision($newPrecision)
->setScale($newScale);
},
)
->create();
$schemaManager = $this->connection->createSchemaManager();
$diff = $schemaManager->createComparator()
->compareTables($schemaManager->introspectTable('decimal_table'), $table);
$schemaManager->alterTable($diff);
$table = $schemaManager->introspectTable('decimal_table');
$column = $table->getColumn('val');
self::assertSame($newPrecision, $column->getPrecision());
self::assertSame($newScale, $column->getScale());
}
/** @return iterable<string,array{int,int,Types::*}> */
public static function scaleAndPrecisionProvider(): iterable
{
foreach ([Types::DECIMAL, Types::NUMBER] as $type) {
yield sprintf('Precision (%s)', $type) => [12, 6, $type];
yield sprintf('Scale (%s)', $type) => [16, 8, $type];
yield sprintf('Precision and scale (%s)', $type) => [10, 4, $type];
}
}
}
|