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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Platforms;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\ColumnDiff;
use Doctrine\DBAL\Schema\ForeignKeyConstraint;
use Doctrine\DBAL\Schema\Name\OptionallyQualifiedName;
use Doctrine\DBAL\Schema\PrimaryKeyConstraint;
use Doctrine\DBAL\Schema\Sequence;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Schema\TableDiff;
use Doctrine\DBAL\Schema\UniqueConstraint;
use Doctrine\DBAL\TransactionIsolationLevel;
use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Types\Types;
use PHPUnit\Framework\Attributes\DataProvider;
use UnexpectedValueException;
use function sprintf;
/** @extends AbstractPlatformTestCase<PostgreSQLPlatform> */
class PostgreSQLPlatformTest extends AbstractPlatformTestCase
{
public function createPlatform(): AbstractPlatform
{
return new PostgreSQLPlatform();
}
public function getGenerateTableSql(): string
{
return 'CREATE TABLE test (id INT GENERATED BY DEFAULT AS IDENTITY NOT NULL, test VARCHAR(255) DEFAULT NULL'
. ', PRIMARY KEY (id))';
}
/**
* {@inheritDoc}
*/
public function getGenerateTableWithMultiColumnUniqueIndexSql(): array
{
return [
'CREATE TABLE test (foo VARCHAR(255) DEFAULT NULL, bar VARCHAR(255) DEFAULT NULL)',
'CREATE UNIQUE INDEX UNIQ_D87F7E0C8C73652176FF8CAA ON test (foo, bar)',
];
}
public function getGenerateIndexSql(): string
{
return 'CREATE INDEX my_idx ON mytable (user_name, last_login)';
}
protected function getGenerateForeignKeySql(): string
{
return 'ALTER TABLE test ADD FOREIGN KEY (fk_name_id)'
. ' REFERENCES other_table (id)';
}
public function testGeneratesForeignKeySqlForNonStandardOptions(): void
{
$foreignKey = new ForeignKeyConstraint(
['foreign_id'],
'my_table',
['id'],
'my_fk',
['onDelete' => 'CASCADE'],
);
self::assertEquals(
'CONSTRAINT my_fk FOREIGN KEY (foreign_id)'
. ' REFERENCES my_table (id) ON DELETE CASCADE',
$this->platform->getForeignKeyDeclarationSQL($foreignKey),
);
$foreignKey = new ForeignKeyConstraint(
['foreign_id'],
'my_table',
['id'],
'my_fk',
['match' => 'full'],
);
self::assertEquals(
'CONSTRAINT my_fk FOREIGN KEY (foreign_id)'
. ' REFERENCES my_table (id) MATCH full',
$this->platform->getForeignKeyDeclarationSQL($foreignKey),
);
$foreignKey = new ForeignKeyConstraint(
['foreign_id'],
'my_table',
['id'],
'my_fk',
['deferrable' => true],
);
self::assertEquals(
'CONSTRAINT my_fk FOREIGN KEY (foreign_id)'
. ' REFERENCES my_table (id) DEFERRABLE',
$this->platform->getForeignKeyDeclarationSQL($foreignKey),
);
$foreignKey = new ForeignKeyConstraint(
['foreign_id'],
'my_table',
['id'],
'my_fk',
['deferred' => true],
);
self::assertEquals(
'CONSTRAINT my_fk FOREIGN KEY (foreign_id)'
. ' REFERENCES my_table (id) INITIALLY DEFERRED',
$this->platform->getForeignKeyDeclarationSQL($foreignKey),
);
$foreignKey = new ForeignKeyConstraint(
['foreign_id'],
'my_table',
['id'],
'my_fk',
['deferred' => true],
);
self::assertEquals(
'CONSTRAINT my_fk FOREIGN KEY (foreign_id)'
. ' REFERENCES my_table (id) INITIALLY DEFERRED',
$this->platform->getForeignKeyDeclarationSQL($foreignKey),
);
$foreignKey = new ForeignKeyConstraint(
['foreign_id'],
'my_table',
['id'],
'my_fk',
['deferrable' => true, 'deferred' => true, 'match' => 'full'],
);
self::assertEquals(
'CONSTRAINT my_fk FOREIGN KEY (foreign_id)'
. ' REFERENCES my_table (id) MATCH full DEFERRABLE INITIALLY DEFERRED',
$this->platform->getForeignKeyDeclarationSQL($foreignKey),
);
}
public function testGeneratesSqlSnippets(): void
{
self::assertEquals('SIMILAR TO', $this->platform->getRegexpExpression());
self::assertEquals(
'column1 || column2 || column3',
$this->platform->getConcatExpression('column1', 'column2', 'column3'),
);
self::assertEquals('SUBSTRING(column FROM 5)', $this->platform->getSubstringExpression('column', '5'));
self::assertEquals(
'SUBSTRING(column FROM 1 FOR 5)',
$this->platform->getSubstringExpression('column', '1', '5'),
);
}
public function testGeneratesTransactionCommands(): void
{
self::assertEquals(
'SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL READ UNCOMMITTED',
$this->platform->getSetTransactionIsolationSQL(TransactionIsolationLevel::READ_UNCOMMITTED),
);
self::assertEquals(
'SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL READ COMMITTED',
$this->platform->getSetTransactionIsolationSQL(TransactionIsolationLevel::READ_COMMITTED),
);
self::assertEquals(
'SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL REPEATABLE READ',
$this->platform->getSetTransactionIsolationSQL(TransactionIsolationLevel::REPEATABLE_READ),
);
self::assertEquals(
'SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL SERIALIZABLE',
$this->platform->getSetTransactionIsolationSQL(TransactionIsolationLevel::SERIALIZABLE),
);
}
public function testGeneratesDDLSnippets(): void
{
self::assertEquals('CREATE DATABASE foobar', $this->platform->getCreateDatabaseSQL('foobar'));
self::assertEquals('DROP DATABASE foobar', $this->platform->getDropDatabaseSQL('foobar'));
self::assertEquals('DROP TABLE foobar', $this->platform->getDropTableSQL('foobar'));
}
public function testGenerateTableWithAutoincrement(): void
{
$table = Table::editor()
->setUnquotedName('autoinc_table')
->setColumns(
Column::editor()
->setUnquotedName('id')
->setTypeName(Types::INTEGER)
->setAutoincrement(true)
->create(),
)
->create();
self::assertEquals(
['CREATE TABLE autoinc_table (id INT GENERATED BY DEFAULT AS IDENTITY NOT NULL)'],
$this->platform->getCreateTableSQL($table),
);
}
public function testGenerateUnloggedTable(): void
{
$table = Table::editor()
->setUnquotedName('mytable')
->setColumns(
Column::editor()
->setUnquotedName('foo')
->setTypeName(Types::STRING)
->create(),
)
->setOptions(['unlogged' => true])
->create();
self::assertEquals(
['CREATE UNLOGGED TABLE mytable (foo VARCHAR NOT NULL)'],
$this->platform->getCreateTableSQL($table),
);
}
/** @return mixed[][] */
public static function serialTypes(): iterable
{
return [
['integer', 'INT GENERATED BY DEFAULT AS IDENTITY'],
['bigint', 'BIGINT GENERATED BY DEFAULT AS IDENTITY'],
];
}
#[DataProvider('serialTypes')]
public function testGenerateTableWithAutoincrementDoesNotSetDefault(string $typeName, string $definition): void
{
$table = Table::editor()
->setUnquotedName('autoinc_table_notnull')
->setColumns(
Column::editor()
->setUnquotedName('id')
->setTypeName($typeName)
->setAutoincrement(true)
->setNotNull(false)
->create(),
)
->create();
$sql = $this->platform->getCreateTableSQL($table);
self::assertEquals([sprintf('CREATE TABLE autoinc_table_notnull (id %s)', $definition)], $sql);
}
#[DataProvider('serialTypes')]
public function testCreateTableWithAutoincrementAndNotNullAddsConstraint(string $typeName, string $definition): void
{
$table = Table::editor()
->setUnquotedName('autoinc_table_notnull_enabled')
->setColumns(
Column::editor()
->setUnquotedName('id')
->setTypeName($typeName)
->setAutoincrement(true)
->create(),
)
->create();
$sql = $this->platform->getCreateTableSQL($table);
self::assertEquals([sprintf('CREATE TABLE autoinc_table_notnull_enabled (id %s NOT NULL)', $definition)], $sql);
}
#[DataProvider('serialTypes')]
public function testGetDefaultValueDeclarationSQLIgnoresTheDefaultKeyWhenTheFieldIsSerial(string $type, string $definition): void
{
$sql = $this->platform->getDefaultValueDeclarationSQL(
[
'autoincrement' => true,
'type' => Type::getType($type),
'default' => 1,
],
);
self::assertSame('', $sql);
}
public function testGeneratesTypeDeclarationForIntegers(): void
{
self::assertEquals(
'INT',
$this->platform->getIntegerTypeDeclarationSQL([]),
);
self::assertEquals(
'INT GENERATED BY DEFAULT AS IDENTITY',
$this->platform->getIntegerTypeDeclarationSQL(['autoincrement' => true]),
);
self::assertEquals(
'INT GENERATED BY DEFAULT AS IDENTITY',
$this->platform->getIntegerTypeDeclarationSQL(
['autoincrement' => true, 'primary' => true],
),
);
}
public function getGenerateUniqueIndexSql(): string
{
return 'CREATE UNIQUE INDEX index_name ON test (test, test2)';
}
public function testGeneratesSequenceSqlCommands(): void
{
$sequence = new Sequence('myseq', 20, 1);
self::assertEquals(
'CREATE SEQUENCE myseq INCREMENT BY 20 MINVALUE 1 START 1',
$this->platform->getCreateSequenceSQL($sequence),
);
self::assertEquals(
'DROP SEQUENCE myseq CASCADE',
$this->platform->getDropSequenceSQL('myseq'),
);
self::assertEquals(
"SELECT NEXTVAL('myseq')",
$this->platform->getSequenceNextValSQL('myseq'),
);
}
public function testSupportsIdentityColumns(): void
{
self::assertTrue($this->platform->supportsIdentityColumns());
}
public function testSupportsSavePoints(): void
{
self::assertTrue($this->platform->supportsSavepoints());
}
public function testSupportsSequences(): void
{
self::assertTrue($this->platform->supportsSequences());
}
protected function supportsCommentOnStatement(): bool
{
return true;
}
public function testModifyLimitQuery(): void
{
$sql = $this->platform->modifyLimitQuery('SELECT * FROM user', 10, 0);
self::assertEquals('SELECT * FROM user LIMIT 10', $sql);
}
public function testModifyLimitQueryWithEmptyOffset(): void
{
$sql = $this->platform->modifyLimitQuery('SELECT * FROM user', 10);
self::assertEquals('SELECT * FROM user LIMIT 10', $sql);
}
/**
* {@inheritDoc}
*/
protected function getQuotedColumnInPrimaryKeySQL(): array
{
return ['CREATE TABLE "quoted" ("create" VARCHAR(255) NOT NULL, PRIMARY KEY ("create"))'];
}
/**
* {@inheritDoc}
*/
protected function getQuotedColumnInIndexSQL(): array
{
return [
'CREATE TABLE "quoted" ("create" VARCHAR(255) NOT NULL)',
'CREATE INDEX IDX_22660D028FD6E0FB ON "quoted" ("create")',
];
}
/**
* {@inheritDoc}
*/
protected function getQuotedNameInIndexSQL(): array
{
return [
'CREATE TABLE test (column1 VARCHAR(255) NOT NULL)',
'CREATE INDEX "key" ON test (column1)',
];
}
/**
* {@inheritDoc}
*/
protected function getQuotedColumnInForeignKeySQL(): array
{
return [
'CREATE TABLE "quoted" ("create" VARCHAR(255) NOT NULL, '
. 'foo VARCHAR(255) NOT NULL, "bar" VARCHAR(255) NOT NULL)',
'CREATE INDEX IDX_22660D028FD6E0FB8C7365216D704F76 ON "quoted" ("create", foo, "bar")',
'ALTER TABLE "quoted" ADD CONSTRAINT FK_WITH_RESERVED_KEYWORD FOREIGN KEY ("create", foo, "bar")'
. ' REFERENCES "foreign" ("create", bar, "foo-bar")',
'ALTER TABLE "quoted" ADD CONSTRAINT FK_WITH_NON_RESERVED_KEYWORD FOREIGN KEY ("create", foo, "bar")'
. ' REFERENCES foo ("create", bar, "foo-bar")',
'ALTER TABLE "quoted" ADD CONSTRAINT FK_WITH_INTENDED_QUOTATION FOREIGN KEY ("create", foo, "bar")'
. ' REFERENCES "foo-bar" ("create", bar, "foo-bar")',
];
}
#[DataProvider('pgBooleanProvider')]
public function testConvertBooleanAsLiteralStrings(
string $databaseValue,
string $preparedStatementValue,
int $integerValue,
bool $booleanValue,
): void {
self::assertEquals($preparedStatementValue, $this->platform->convertBooleans($databaseValue));
}
public function testConvertBooleanAsLiteralIntegers(): void
{
$this->platform->setUseBooleanTrueFalseStrings(false);
self::assertEquals(1, $this->platform->convertBooleans(true));
self::assertEquals(1, $this->platform->convertBooleans('1'));
self::assertEquals(0, $this->platform->convertBooleans(false));
self::assertEquals(0, $this->platform->convertBooleans('0'));
}
#[DataProvider('pgBooleanProvider')]
public function testConvertBooleanAsDatabaseValueStrings(
string $databaseValue,
string $preparedStatementValue,
int $integerValue,
bool $booleanValue,
): void {
self::assertSame($integerValue, $this->platform->convertBooleansToDatabaseValue($booleanValue));
}
public function testConvertBooleanAsDatabaseValueIntegers(): void
{
$this->platform->setUseBooleanTrueFalseStrings(false);
self::assertSame(1, $this->platform->convertBooleansToDatabaseValue(true));
self::assertSame(0, $this->platform->convertBooleansToDatabaseValue(false));
}
#[DataProvider('pgBooleanProvider')]
public function testConvertFromBoolean(
string $databaseValue,
string $prepareStatementValue,
int $integerValue,
bool $booleanValue,
): void {
self::assertSame($booleanValue, $this->platform->convertFromBoolean($databaseValue));
}
public function testThrowsExceptionWithInvalidBooleanLiteral(): void
{
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Unrecognized boolean literal, my-bool given.');
$this->platform->convertBooleansToDatabaseValue('my-bool');
}
public function testGetCreateSchemaSQL(): void
{
$schemaName = 'schema';
$sql = $this->platform->getCreateSchemaSQL($schemaName);
self::assertEquals('CREATE SCHEMA ' . $schemaName, $sql);
}
public function testDroppingConstraintsBeforeColumns(): void
{
$newTable = Table::editor()
->setUnquotedName('mytable')
->setColumns(
Column::editor()
->setUnquotedName('id')
->setTypeName(Types::INTEGER)
->create(),
)
->setPrimaryKeyConstraint(
PrimaryKeyConstraint::editor()
->setUnquotedColumnNames('id')
->create(),
)
->create();
$oldTable = $newTable->edit()
->addColumn(
Column::editor()
->setUnquotedName('parent_id')
->setTypeName(Types::INTEGER)
->create(),
)
->addForeignKeyConstraint(
ForeignKeyConstraint::editor()
->setUnquotedName('fk_parent')
->setUnquotedReferencingColumnNames('parent_id')
->setUnquotedReferencedTableName('mytable')
->setUnquotedReferencedColumnNames('id')
->create(),
)
->create();
$diff = $this->createComparator()
->compareTables($oldTable, $newTable);
$sql = $this->platform->getAlterTableSQL($diff);
$expectedSql = [
'ALTER TABLE mytable DROP CONSTRAINT fk_parent',
'DROP INDEX IDX_6B2BD609727ACA70',
'ALTER TABLE mytable DROP parent_id',
];
self::assertEquals($expectedSql, $sql);
}
/** @param list<string> $expectedSql */
#[DataProvider('dropPrimaryKeyProvider')]
public function testDroppingPrimaryKey(OptionallyQualifiedName $tableName, array $expectedSql): void
{
$oldTable = Table::editor()
->setName($tableName)
->setColumns(
Column::editor()
->setUnquotedName('id')
->setTypeName(Types::INTEGER)
->create(),
)
->setPrimaryKeyConstraint(
PrimaryKeyConstraint::editor()
->setUnquotedColumnNames('id')
->create(),
)
->create();
$newTable = $oldTable->edit()
->dropPrimaryKeyConstraint()
->create();
$diff = $this->createComparator()
->compareTables($oldTable, $newTable);
$sql = $this->platform->getAlterTableSQL($diff);
self::assertEquals($expectedSql, $sql);
}
/** @return iterable<array{OptionallyQualifiedName,list<string>}> */
public static function dropPrimaryKeyProvider(): iterable
{
return [
[OptionallyQualifiedName::unquoted('test'), ['ALTER TABLE test DROP CONSTRAINT test_pkey']],
[OptionallyQualifiedName::quoted('test'), ['ALTER TABLE "test" DROP CONSTRAINT "test_pkey"']],
];
}
#[DataProvider('dataCreateSequenceWithCache')]
public function testCreateSequenceWithCache(int $cacheSize, string $expectedSql): void
{
$sequence = new Sequence('foo', 1, 1, $cacheSize);
self::assertStringContainsString($expectedSql, $this->platform->getCreateSequenceSQL($sequence));
}
/** @return mixed[][] */
public static function dataCreateSequenceWithCache(): iterable
{
return [
[3, 'CACHE 3'],
];
}
public function getExpectedFixedLengthBinaryTypeDeclarationSQLNoLength(): string
{
return 'BYTEA';
}
public function getExpectedFixedLengthBinaryTypeDeclarationSQLWithLength(): string
{
return 'BYTEA';
}
public function getExpectedVariableLengthBinaryTypeDeclarationSQLNoLength(): string
{
return 'BYTEA';
}
public function getExpectedVariableLengthBinaryTypeDeclarationSQLWithLength(): string
{
return 'BYTEA';
}
public function testDoesNotPropagateUnnecessaryTableAlterationOnBinaryType(): void
{
$table1 = Table::editor()
->setUnquotedName('mytable')
->setColumns(
Column::editor()
->setUnquotedName('column_varbinary')
->setTypeName(Types::BINARY)
->create(),
Column::editor()
->setUnquotedName('column_binary')
->setTypeName(Types::BINARY)
->setFixed(true)
->create(),
Column::editor()
->setUnquotedName('column_blob')
->setTypeName(Types::BLOB)
->create(),
)
->create();
$table2 = Table::editor()
->setUnquotedName('mytable')
->setColumns(
Column::editor()
->setUnquotedName('column_varbinary')
->setTypeName(Types::BINARY)
->setFixed(true)
->create(),
Column::editor()
->setUnquotedName('column_binary')
->setTypeName(Types::BINARY)
->create(),
Column::editor()
->setUnquotedName('column_blob')
->setTypeName(Types::BINARY)
->create(),
)
->create();
$comparator = $this->createComparator();
// VARBINARY -> BINARY
// BINARY -> VARBINARY
// BLOB -> VARBINARY
self::assertTrue(
$comparator->compareTables($table1, $table2)
->isEmpty(),
);
$table2 = Table::editor()
->setUnquotedName('mytable')
->setColumns(
Column::editor()
->setUnquotedName('column_varbinary')
->setTypeName(Types::BINARY)
->setLength(42)
->create(),
Column::editor()
->setUnquotedName('column_binary')
->setTypeName(Types::BLOB)
->create(),
Column::editor()
->setUnquotedName('column_blob')
->setTypeName(Types::BINARY)
->setLength(11)
->setFixed(true)
->create(),
)
->create();
// VARBINARY -> VARBINARY with changed length
// BINARY -> BLOB
// BLOB -> BINARY
self::assertTrue(
$comparator->compareTables($table1, $table2)
->isEmpty(),
);
$table2 = Table::editor()
->setUnquotedName('mytable')
->setColumns(
Column::editor()
->setUnquotedName('column_varbinary')
->setTypeName(Types::BLOB)
->create(),
Column::editor()
->setUnquotedName('column_binary')
->setTypeName(Types::BINARY)
->setLength(42)
->setFixed(true)
->create(),
Column::editor()
->setUnquotedName('column_blob')
->setTypeName(Types::BLOB)
->create(),
)
->create();
// VARBINARY -> BLOB
// BINARY -> BINARY with changed length
// BLOB -> BLOB
self::assertTrue(
$comparator->compareTables($table1, $table2)
->isEmpty(),
);
}
/**
* {@inheritDoc}
*/
protected function getAlterTableRenameIndexSQL(): array
{
return ['ALTER INDEX idx_foo RENAME TO idx_bar'];
}
/**
* {@inheritDoc}
*/
protected function getQuotedAlterTableRenameIndexSQL(): array
{
return [
'ALTER INDEX "create" RENAME TO "select"',
'ALTER INDEX "foo" RENAME TO "bar"',
];
}
/**
* PostgreSQL boolean strings provider
*
* @return mixed[][]
*/
public static function pgBooleanProvider(): iterable
{
return [
// Database value, prepared statement value, boolean integer value, boolean value.
['t', 'true', 1, true],
['true', 'true', 1, true],
['y', 'true', 1, true],
['yes', 'true', 1, true],
['on', 'true', 1, true],
['1', 'true', 1, true],
['f', 'false', 0, false],
['false', 'false', 0, false],
[ 'n', 'false', 0, false],
['no', 'false', 0, false],
['off', 'false', 0, false],
['0', 'false', 0, false],
];
}
/**
* {@inheritDoc}
*/
protected function getAlterTableRenameIndexInSchemaSQL(): array
{
return ['ALTER INDEX myschema.idx_foo RENAME TO idx_bar'];
}
/**
* {@inheritDoc}
*/
protected function getQuotedAlterTableRenameIndexInSchemaSQL(): array
{
return [
'ALTER INDEX "schema"."create" RENAME TO "select"',
'ALTER INDEX "schema"."foo" RENAME TO "bar"',
];
}
public function testReturnsGuidTypeDeclarationSQL(): void
{
self::assertSame('UUID', $this->platform->getGuidTypeDeclarationSQL([]));
}
/**
* {@inheritDoc}
*/
protected function getCommentOnColumnSQL(): array
{
return [
'COMMENT ON COLUMN foo.bar IS \'comment\'',
'COMMENT ON COLUMN "Foo"."BAR" IS \'comment\'',
'COMMENT ON COLUMN "select"."from" IS \'comment\'',
];
}
public function testAltersTableColumnCommentWithExplicitlyQuotedIdentifiers(): void
{
$table1 = Table::editor()
->setQuotedName('Foo')
->setColumns(Column::editor()
->setQuotedName('Bar')
->setTypeName(Types::INTEGER)
->create())
->create();
$table2 = Table::editor()
->setQuotedName('Foo')
->setColumns(Column::editor()
->setQuotedName('Bar')
->setTypeName(Types::INTEGER)
->setComment('Baz')
->create())
->create();
$tableDiff = $this->createComparator()
->compareTables($table1, $table2);
self::assertSame(
['COMMENT ON COLUMN "Foo"."Bar" IS \'Baz\''],
$this->platform->getAlterTableSQL($tableDiff),
);
}
public function testTypeChangeWithTheSameSQLGenerationWhileChangingAComment(): void
{
$table1 = Table::editor()
->setQuotedName('Foo')
->setColumns(Column::editor()
->setQuotedName('Bar')
->setTypeName(Types::DATETIMETZ_MUTABLE)
->create())
->create();
$table2 = Table::editor()
->setQuotedName('Foo')
->setColumns(Column::editor()
->setQuotedName('Bar')
->setTypeName(Types::DATETIMETZ_IMMUTABLE)
->setComment('Baz')
->create())
->create();
$tableDiff = $this->createComparator()
->compareTables($table1, $table2);
self::assertSame(
['COMMENT ON COLUMN "Foo"."Bar" IS \'Baz\''],
$this->platform->getAlterTableSQL($tableDiff),
);
}
protected function getQuotesReservedKeywordInUniqueConstraintDeclarationSQL(): string
{
return 'CONSTRAINT "select" UNIQUE (foo)';
}
protected function getQuotesReservedKeywordInIndexDeclarationSQL(): string
{
return 'INDEX "select" (foo)';
}
protected function getQuotesReservedKeywordInTruncateTableSQL(): string
{
return 'TRUNCATE "select"';
}
/**
* {@inheritDoc}
*/
protected function getAlterStringToFixedStringSQL(): array
{
return ['ALTER TABLE mytable ALTER name TYPE CHAR(2)'];
}
/**
* {@inheritDoc}
*/
protected function getGeneratesAlterTableRenameIndexUsedByForeignKeySQL(): array
{
return ['ALTER INDEX idx_foo RENAME TO idx_foo_renamed'];
}
public function testInitializesTsvectorTypeMapping(): void
{
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('tsvector'));
self::assertEquals(Types::TEXT, $this->platform->getDoctrineTypeMapping('tsvector'));
}
public function testSupportsPartialIndexes(): void
{
self::assertTrue($this->platform->supportsPartialIndexes());
}
public function testGetCreateTableSQLWithUniqueConstraints(): void
{
$table = Table::editor()
->setUnquotedName('foo')
->setColumns(
Column::editor()
->setUnquotedName('id')
->setTypeName(Types::STRING)
->create(),
)
->setUniqueConstraints(
UniqueConstraint::editor()
->setUnquotedName('test_unique_constraint')
->setUnquotedColumnNames('id')
->create(),
)
->create();
self::assertSame(
[
'CREATE TABLE foo (id VARCHAR NOT NULL)',
'ALTER TABLE foo ADD CONSTRAINT test_unique_constraint UNIQUE (id)',
],
$this->platform->getCreateTableSQL($table),
'Unique constraints are added to table.',
);
}
public function testGetCreateTableSQLWithColumnCollation(): void
{
$table = Table::editor()
->setUnquotedName('foo')
->setColumns(
Column::editor()
->setUnquotedName('id')
->setTypeName(Types::STRING)
->create(),
)
->setOptions(['comment' => 'foo'])
->create();
self::assertSame(
[
'CREATE TABLE foo (id VARCHAR NOT NULL)',
"COMMENT ON TABLE foo IS 'foo'",
],
$this->platform->getCreateTableSQL($table),
'Comments are added to table.',
);
}
public function testColumnCollationDeclarationSQL(): void
{
self::assertEquals(
'COLLATE "en_US.UTF-8"',
$this->platform->getColumnCollationDeclarationSQL('en_US.UTF-8'),
);
}
public function testReturnsJsonTypeDeclarationSQL(): void
{
self::assertSame('JSON', $this->platform->getJsonTypeDeclarationSQL([]));
self::assertSame('JSON', $this->platform->getJsonTypeDeclarationSQL(['jsonb' => false]));
self::assertSame('JSONB', $this->platform->getJsonTypeDeclarationSQL(['jsonb' => true]));
}
public function testReturnsSmallIntTypeDeclarationSQL(): void
{
self::assertSame(
'SMALLINT GENERATED BY DEFAULT AS IDENTITY',
$this->platform->getSmallIntTypeDeclarationSQL(['autoincrement' => true]),
);
self::assertSame(
'SMALLINT',
$this->platform->getSmallIntTypeDeclarationSQL(['autoincrement' => false]),
);
self::assertSame(
'SMALLINT',
$this->platform->getSmallIntTypeDeclarationSQL([]),
);
}
public function testInitializesJsonTypeMapping(): void
{
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('json'));
self::assertEquals(Types::JSON, $this->platform->getDoctrineTypeMapping('json'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('jsonb'));
self::assertEquals(Types::JSON, $this->platform->getDoctrineTypeMapping('jsonb'));
}
public function testGetListSequencesSQL(): void
{
self::assertSame(
"SELECT sequence_name AS relname,
sequence_schema AS schemaname,
minimum_value AS min_value,
increment AS increment_by
FROM information_schema.sequences
WHERE sequence_catalog = 'test_db'
AND sequence_schema NOT LIKE 'pg\_%'
AND sequence_schema != 'information_schema'",
$this->platform->getListSequencesSQL('test_db'),
);
}
public function testAlterTableChangeJsonToJsonb(): void
{
$table = Table::editor()
->setUnquotedName('mytable')
->setColumns(
Column::editor()
->setUnquotedName('payload')
->setTypeName(Types::JSON)
->create(),
)
->create();
$tableDiff = new TableDiff($table, changedColumns: [
'payload' => new ColumnDiff(
$table->getColumn('payload'),
Column::editor()
->setUnquotedName('payload')
->setTypeName(Types::JSON)
->create()
->setPlatformOption('jsonb', true),
),
]);
self::assertSame(
['ALTER TABLE mytable ALTER payload TYPE JSONB'],
$this->platform->getAlterTableSQL($tableDiff),
);
}
public function testAlterTableChangeJsonbToJson(): void
{
$table = Table::editor()
->setUnquotedName('mytable')
->setColumns(
Column::editor()
->setUnquotedName('payload')
->setTypeName(Types::JSON)
->create()
->setPlatformOption('jsonb', true),
)
->create();
$tableDiff = new TableDiff($table, changedColumns: [
'payload' => new ColumnDiff(
$table->getColumn('payload'),
Column::editor()
->setUnquotedName('payload')
->setTypeName(Types::JSON)
->create(),
),
]);
self::assertSame(
['ALTER TABLE mytable ALTER payload TYPE JSON'],
$this->platform->getAlterTableSQL($tableDiff),
);
}
}
|