-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
PostgreSQLSchemaManagerTest.php
663 lines (536 loc) · 26.1 KB
/
PostgreSQLSchemaManagerTest.php
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
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Functional\Schema;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\PostgreSQL120Platform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Schema\Exception\TableDoesNotExist;
use Doctrine\DBAL\Schema\ForeignKeyConstraint;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Schema\View;
use Doctrine\DBAL\Types\BlobType;
use Doctrine\DBAL\Types\DecimalType;
use Doctrine\DBAL\Types\IntegerType;
use Doctrine\DBAL\Types\JsonType;
use Doctrine\DBAL\Types\TextType;
use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Types\Types;
use PHPUnit\Framework\Attributes\DataProvider;
use function array_map;
use function array_pop;
use function count;
use function sprintf;
use function strtolower;
use function version_compare;
class PostgreSQLSchemaManagerTest extends SchemaManagerFunctionalTestCase
{
protected function supportsPlatform(AbstractPlatform $platform): bool
{
return $platform instanceof PostgreSQLPlatform;
}
public function testGetSchemaNames(): void
{
$names = $this->schemaManager->listSchemaNames();
self::assertContains('public', $names, 'The public schema should be found.');
}
public function testSupportDomainTypeFallback(): void
{
$createDomainTypeSQL = 'CREATE DOMAIN MyMoney AS DECIMAL(18,2)';
$this->connection->executeStatement($createDomainTypeSQL);
$createTableSQL = 'CREATE TABLE domain_type_test (id INT PRIMARY KEY, value MyMoney)';
$this->connection->executeStatement($createTableSQL);
$table = $this->connection->createSchemaManager()->introspectTable('domain_type_test');
self::assertInstanceOf(DecimalType::class, $table->getColumn('value')->getType());
Type::addType('MyMoney', MoneyType::class);
$this->connection->getDatabasePlatform()->registerDoctrineTypeMapping('MyMoney', 'MyMoney');
$table = $this->connection->createSchemaManager()->introspectTable('domain_type_test');
self::assertInstanceOf(MoneyType::class, $table->getColumn('value')->getType());
}
public function testDetectsAutoIncrement(): void
{
$autoincTable = new Table('autoinc_table');
$column = $autoincTable->addColumn('id', Types::INTEGER);
$column->setAutoincrement(true);
$this->dropAndCreateTable($autoincTable);
$autoincTable = $this->schemaManager->introspectTable('autoinc_table');
self::assertTrue($autoincTable->getColumn('id')->getAutoincrement());
}
public function testAlterTableAutoIncrementAdd(): void
{
$tableFrom = new Table('autoinc_table_add');
$tableFrom->addColumn('id', Types::INTEGER);
$this->dropAndCreateTable($tableFrom);
$tableFrom = $this->schemaManager->introspectTable('autoinc_table_add');
self::assertFalse($tableFrom->getColumn('id')->getAutoincrement());
$tableTo = new Table('autoinc_table_add');
$column = $tableTo->addColumn('id', Types::INTEGER);
$column->setAutoincrement(true);
$platform = $this->connection->getDatabasePlatform();
$diff = $this->schemaManager->createComparator()
->compareTables($tableFrom, $tableTo);
$sql = $platform->getAlterTableSQL($diff);
self::assertEquals(['ALTER TABLE autoinc_table_add ALTER id ADD GENERATED BY DEFAULT AS IDENTITY'], $sql);
$this->schemaManager->alterTable($diff);
$tableFinal = $this->schemaManager->introspectTable('autoinc_table_add');
self::assertTrue($tableFinal->getColumn('id')->getAutoincrement());
}
public function testAlterTableAutoIncrementDrop(): void
{
$tableFrom = new Table('autoinc_table_drop');
$column = $tableFrom->addColumn('id', Types::INTEGER);
$column->setAutoincrement(true);
$this->dropAndCreateTable($tableFrom);
$tableFrom = $this->schemaManager->introspectTable('autoinc_table_drop');
self::assertTrue($tableFrom->getColumn('id')->getAutoincrement());
$tableTo = new Table('autoinc_table_drop');
$tableTo->addColumn('id', Types::INTEGER);
$platform = $this->connection->getDatabasePlatform();
$diff = $this->schemaManager->createComparator()
->compareTables($tableFrom, $tableTo);
self::assertEquals(
['ALTER TABLE autoinc_table_drop ALTER id DROP IDENTITY'],
$platform->getAlterTableSQL($diff),
);
$this->schemaManager->alterTable($diff);
$tableFinal = $this->schemaManager->introspectTable('autoinc_table_drop');
self::assertFalse($tableFinal->getColumn('id')->getAutoincrement());
}
public function testTableWithSchema(): void
{
$this->connection->executeStatement('CREATE SCHEMA nested');
$nestedRelatedTable = new Table('nested.schemarelated');
$column = $nestedRelatedTable->addColumn('id', Types::INTEGER);
$column->setAutoincrement(true);
$nestedRelatedTable->setPrimaryKey(['id']);
$nestedSchemaTable = new Table('nested.schematable');
$column = $nestedSchemaTable->addColumn('id', Types::INTEGER);
$column->setAutoincrement(true);
$nestedSchemaTable->setPrimaryKey(['id']);
$nestedSchemaTable->addForeignKeyConstraint($nestedRelatedTable->getName(), ['id'], ['id']);
$this->schemaManager->createTable($nestedRelatedTable);
$this->schemaManager->createTable($nestedSchemaTable);
$tableNames = $this->schemaManager->listTableNames();
self::assertContains('nested.schematable', $tableNames);
$tables = $this->schemaManager->listTables();
self::assertNotNull($this->findTableByName($tables, 'nested.schematable'));
$nestedSchemaTable = $this->schemaManager->introspectTable('nested.schematable');
self::assertTrue($nestedSchemaTable->hasColumn('id'));
$primaryKey = $nestedSchemaTable->getPrimaryKey();
self::assertNotNull($primaryKey);
self::assertEquals(['id'], $primaryKey->getColumns());
$relatedFks = $nestedSchemaTable->getForeignKeys();
self::assertCount(1, $relatedFks);
$relatedFk = array_pop($relatedFks);
self::assertNotNull($relatedFk);
self::assertEquals('nested.schemarelated', $relatedFk->getForeignTableName());
}
public function testListSameTableNameColumnsWithDifferentSchema(): void
{
$this->connection->executeStatement('CREATE SCHEMA another');
$table = new Table('table');
$table->addColumn('id', Types::INTEGER);
$table->addColumn('name', Types::TEXT);
$this->schemaManager->createTable($table);
$anotherSchemaTable = new Table('another.table');
$anotherSchemaTable->addColumn('id', Types::TEXT);
$anotherSchemaTable->addColumn('email', Types::TEXT);
$this->schemaManager->createTable($anotherSchemaTable);
$table = $this->schemaManager->introspectTable('table');
self::assertCount(2, $table->getColumns());
self::assertTrue($table->hasColumn('id'));
self::assertInstanceOf(IntegerType::class, $table->getColumn('id')->getType());
self::assertTrue($table->hasColumn('name'));
$anotherSchemaTable = $this->schemaManager->introspectTable('another.table');
self::assertCount(2, $anotherSchemaTable->getColumns());
self::assertTrue($anotherSchemaTable->hasColumn('id'));
self::assertInstanceOf(TextType::class, $anotherSchemaTable->getColumn('id')->getType());
self::assertTrue($anotherSchemaTable->hasColumn('email'));
}
public function testReturnQuotedAssets(): void
{
$this->connection->executeStatement('DROP TABLE IF EXISTS dbal91_something');
$sql = 'create table dbal91_something'
. ' (id integer CONSTRAINT id_something PRIMARY KEY NOT NULL, "table" integer)';
$this->connection->executeStatement($sql);
$sql = 'ALTER TABLE dbal91_something ADD CONSTRAINT something_input'
. ' FOREIGN KEY( "table" ) REFERENCES dbal91_something ON UPDATE CASCADE;';
$this->connection->executeStatement($sql);
$table = $this->schemaManager->introspectTable('dbal91_something');
self::assertEquals(
[
'CREATE TABLE dbal91_something (id INT NOT NULL, "table" INT DEFAULT NULL, PRIMARY KEY(id))',
'CREATE INDEX IDX_A9401304ECA7352B ON dbal91_something ("table")',
'ALTER TABLE dbal91_something ADD CONSTRAINT something_input FOREIGN KEY ("table")'
. ' REFERENCES dbal91_something (id) ON UPDATE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE',
],
$this->connection->getDatabasePlatform()->getCreateTableSQL($table),
);
}
public function testListForeignKeys(): void
{
$fkOptions = ['SET NULL', 'SET DEFAULT', 'NO ACTION', 'CASCADE', 'RESTRICT'];
$foreignKeys = [];
$fkTable = $this->getTestTable('test_create_fk1');
foreach ($fkOptions as $i => $fkOption) {
$fkTable->addColumn('foreign_key_test' . $i, Types::INTEGER);
$foreignKeys[] = new ForeignKeyConstraint(
['foreign_key_test' . $i],
'test_create_fk2',
['id'],
'foreign_key_test' . $i . '_fk',
['onDelete' => $fkOption],
);
}
$this->dropAndCreateTable($fkTable);
$this->createTestTable('test_create_fk2');
foreach ($foreignKeys as $foreignKey) {
$this->schemaManager->createForeignKey($foreignKey, 'test_create_fk1');
}
$fkeys = $this->schemaManager->listTableForeignKeys('test_create_fk1');
self::assertEquals(count($foreignKeys), count($fkeys));
for ($i = 0; $i < count($fkeys); $i++) {
self::assertEquals(['foreign_key_test' . $i], array_map('strtolower', $fkeys[$i]->getLocalColumns()));
self::assertEquals(['id'], array_map('strtolower', $fkeys[$i]->getForeignColumns()));
self::assertEquals('test_create_fk2', strtolower($fkeys[0]->getForeignTableName()));
if ($foreignKeys[$i]->getOption('onDelete') === 'NO ACTION') {
self::assertFalse($fkeys[$i]->hasOption('onDelete'));
} else {
self::assertEquals($foreignKeys[$i]->getOption('onDelete'), $fkeys[$i]->getOption('onDelete'));
}
}
}
public function testDefaultValueCharacterVarying(): void
{
$testTable = new Table('dbal511_default');
$testTable->addColumn('id', Types::INTEGER);
$testTable->addColumn('def', Types::STRING, ['default' => 'foo']);
$testTable->setPrimaryKey(['id']);
$this->dropAndCreateTable($testTable);
$databaseTable = $this->schemaManager->introspectTable($testTable->getName());
self::assertEquals('foo', $databaseTable->getColumn('def')->getDefault());
}
public function testJsonDefaultValue(): void
{
$testTable = new Table('test_json');
$testTable
->addColumn('foo', Types::JSON)
->setDefault('{"key": "value with a single quote \' in string value"}');
$this->dropAndCreateTable($testTable);
$columns = $this->schemaManager->listTableColumns('test_json');
self::assertSame(Type::getType(Types::JSON), $columns['foo']->getType());
self::assertSame('{"key": "value with a single quote \' in string value"}', $columns['foo']->getDefault());
}
public function testBooleanDefault(): void
{
$table = new Table('ddc2843_bools');
$table->addColumn('id', Types::INTEGER);
$table->addColumn('checked', Types::BOOLEAN, ['default' => false]);
$this->dropAndCreateTable($table);
$databaseTable = $this->schemaManager->introspectTable($table->getName());
self::assertTrue(
$this->schemaManager->createComparator()
->compareTables($table, $databaseTable)
->isEmpty(),
);
}
public function testGeneratedColumn(): void
{
if (! $this->connection->getDatabasePlatform() instanceof PostgreSQL120Platform) {
self::markTestSkipped('Generated columns are not supported in Postgres 11 and earlier');
}
$table = new Table('ddc6198_generated_always_as');
$table->addColumn('id', Types::INTEGER);
$table->addColumn(
'idIsOdd',
Types::BOOLEAN,
['columnDefinition' => 'boolean GENERATED ALWAYS AS (id % 2 = 1) STORED', 'notNull' => false],
);
$this->dropAndCreateTable($table);
$databaseTable = $this->schemaManager->introspectTable($table->getName());
self::assertTrue(
$this->schemaManager->createComparator()
->compareTables($table, $databaseTable)
->isEmpty(),
);
}
/**
* PostgreSQL stores BINARY columns as BLOB
*/
protected function assertBinaryColumnIsValid(Table $table, string $columnName, int $expectedLength): void
{
self::assertInstanceOf(BlobType::class, $table->getColumn($columnName)->getType());
}
/**
* PostgreSQL stores VARBINARY columns as BLOB
*/
protected function assertVarBinaryColumnIsValid(Table $table, string $columnName, int $expectedLength): void
{
self::assertInstanceOf(BlobType::class, $table->getColumn($columnName)->getType());
}
/**
* Although this test would pass in isolation on any platform, we keep it here for the following reasons:
*
* 1. The DBAL currently doesn't properly drop tables in the namespaces that need to be quoted
* (@see testListTableDetailsWhenCurrentSchemaNameQuoted()).
* 2. The schema returned by {@see AbstractSchemaManager::introspectSchema()} doesn't contain views, so
* {@see AbstractSchemaManager::dropSchemaObjects()} cannot drop the tables that have dependent views
* (@see testListTablesExcludesViews()).
* 3. In the case of inheritance, PHPUnit runs the tests declared immediately in the test class
* and then runs the tests declared in the parent.
*
* This test needs to be executed before the ones it conflicts with, so it has to be declared in the same class.
*/
public function testDropWithAutoincrement(): void
{
$this->dropTableIfExists('test_autoincrement');
$schema = new Schema();
$table = $schema->createTable('test_autoincrement');
$table->addColumn('id', Types::INTEGER, [
'notnull' => true,
'autoincrement' => true,
]);
$table->setPrimaryKey(['id']);
$schemaManager = $this->connection->createSchemaManager();
$schemaManager->createSchemaObjects($schema);
$schema = $schemaManager->introspectSchema();
$schemaManager->dropSchemaObjects($schema);
self::assertFalse($schemaManager->tablesExist(['test_autoincrement']));
}
public function testListTableDetailsWhenCurrentSchemaNameQuoted(): void
{
$this->connection->executeStatement('CREATE SCHEMA "001_test"');
$this->connection->executeStatement('SET search_path TO "001_test"');
$this->markConnectionNotReusable();
$this->testIntrospectReservedKeywordTableViaListTableDetails();
}
public function testListTablesExcludesViews(): void
{
$this->createTestTable('list_tables_excludes_views');
$name = 'list_tables_excludes_views_test_view';
$sql = 'SELECT * from list_tables_excludes_views';
$view = new View($name, $sql);
$this->schemaManager->createView($view);
$tables = $this->schemaManager->listTables();
$foundTable = false;
foreach ($tables as $table) {
if (strtolower($table->getName()) !== 'list_tables_excludes_views_test_view') {
continue;
}
$foundTable = true;
}
self::assertFalse($foundTable, 'View "list_tables_excludes_views_test_view" must not be found in table list');
}
public function testPartialIndexes(): void
{
$offlineTable = new Table('person');
$offlineTable->addColumn('id', Types::INTEGER);
$offlineTable->addColumn('name', Types::STRING);
$offlineTable->addColumn('email', Types::STRING);
$offlineTable->addUniqueIndex(['id', 'name'], 'simple_partial_index', ['where' => '(id IS NULL)']);
$this->dropAndCreateTable($offlineTable);
$onlineTable = $this->schemaManager->introspectTable('person');
self::assertTrue(
$this->schemaManager->createComparator()
->compareTables($offlineTable, $onlineTable)
->isEmpty(),
);
self::assertTrue($onlineTable->hasIndex('simple_partial_index'));
self::assertTrue($onlineTable->getIndex('simple_partial_index')->hasOption('where'));
self::assertSame('(id IS NULL)', $onlineTable->getIndex('simple_partial_index')->getOption('where'));
}
public function testJsonbColumn(): void
{
$table = new Table('test_jsonb');
$table->addColumn('foo', Types::JSON)->setPlatformOption('jsonb', true);
$this->dropAndCreateTable($table);
$columns = $this->schemaManager->listTableColumns('test_jsonb');
self::assertInstanceOf(JsonType::class, $columns['foo']->getType());
self::assertTrue($columns['foo']->getPlatformOption('jsonb'));
}
public function testListNegativeColumnDefaultValue(): void
{
$table = new Table('test_default_negative');
$table->addColumn('col_smallint', Types::SMALLINT, ['default' => -1]);
$table->addColumn('col_integer', Types::INTEGER, ['default' => -1]);
$table->addColumn('col_bigint', Types::BIGINT, ['default' => -1]);
$table->addColumn('col_float', Types::FLOAT, ['default' => -1.1]);
$table->addColumn('col_smallfloat', Types::SMALLFLOAT, ['default' => -1.1]);
$table->addColumn('col_decimal', Types::DECIMAL, [
'precision' => 2,
'scale' => 1,
'default' => -1.1,
]);
$table->addColumn('col_string', Types::STRING, ['default' => '(-1)']);
$this->dropAndCreateTable($table);
$columns = $this->schemaManager->listTableColumns('test_default_negative');
self::assertEquals(-1, $columns['col_smallint']->getDefault());
self::assertEquals(-1, $columns['col_integer']->getDefault());
self::assertEquals(-1, $columns['col_bigint']->getDefault());
self::assertEquals(-1.1, $columns['col_float']->getDefault());
self::assertEquals(-1.1, $columns['col_smallfloat']->getDefault());
self::assertEquals(-1.1, $columns['col_decimal']->getDefault());
self::assertEquals('(-1)', $columns['col_string']->getDefault());
}
/** @return mixed[][] */
public static function serialTypes(): iterable
{
return [
[Types::INTEGER],
[Types::BIGINT],
];
}
#[DataProvider('serialTypes')]
public function testAutoIncrementCreatesSerialDataTypesWithoutADefaultValue(string $type): void
{
$tableName = 'test_serial_type_' . $type;
$table = new Table($tableName);
$table->addColumn('id', $type, ['autoincrement' => true, 'notnull' => false]);
$this->dropAndCreateTable($table);
$columns = $this->schemaManager->listTableColumns($tableName);
self::assertNull($columns['id']->getDefault());
}
#[DataProvider('serialTypes')]
public function testAutoIncrementCreatesSerialDataTypesWithoutADefaultValueEvenWhenDefaultIsSet(string $type): void
{
$tableName = 'test_serial_type_with_default_' . $type;
$table = new Table($tableName);
$table->addColumn('id', $type, ['autoincrement' => true, 'notnull' => false, 'default' => 1]);
$this->dropAndCreateTable($table);
$columns = $this->schemaManager->listTableColumns($tableName);
self::assertNull($columns['id']->getDefault());
}
#[DataProvider('autoIncrementTypeMigrations')]
public function testAlterTableAutoIncrementIntToBigInt(string $from, string $to, string $expected): void
{
$table = new Table('autoinc_type_modification');
$column = $table->addColumn('id', $from);
$column->setAutoincrement(true);
$this->dropAndCreateTable($table);
$oldTable = $this->schemaManager->introspectTable('autoinc_type_modification');
self::assertTrue($oldTable->getColumn('id')->getAutoincrement());
$newTable = new Table('autoinc_type_modification');
$column = $newTable->addColumn('id', $to);
$column->setAutoincrement(true);
$diff = $this->schemaManager->createComparator()
->compareTables($oldTable, $newTable);
self::assertSame(
['ALTER TABLE autoinc_type_modification ALTER id TYPE ' . $expected],
$this->connection->getDatabasePlatform()->getAlterTableSQL($diff),
);
$this->schemaManager->alterTable($diff);
$tableFinal = $this->schemaManager->introspectTable('autoinc_type_modification');
self::assertTrue($tableFinal->getColumn('id')->getAutoincrement());
}
public function testListTableColumnsOidConflictWithNonTableObject(): void
{
if (version_compare($this->connection->getServerVersion(), '12.0', '<')) {
self::markTestSkipped('Manually setting the Oid is not supported in Postgres 11 and earlier');
}
$table = 'test_list_table_columns_oid_conflicts';
$this->connection->executeStatement(sprintf('CREATE TABLE IF NOT EXISTS %s(id INT NOT NULL)', $table));
$beforeColumns = $this->schemaManager->listTableColumns($table);
self::assertArrayHasKey('id', $beforeColumns);
$this->connection->executeStatement('CREATE EXTENSION IF NOT EXISTS pg_prewarm');
$originalTableOid = $this->connection->fetchOne(
'SELECT oid FROM pg_class WHERE pg_class.relname = ?',
[$table],
);
$getConflictingOidSql = <<<'SQL'
SELECT objid
FROM pg_depend
JOIN pg_extension as ex on ex.oid = pg_depend.refobjid
WHERE ex.extname = 'pg_prewarm'
ORDER BY objid
LIMIT 1
SQL;
$conflictingOid = $this->connection->fetchOne($getConflictingOidSql);
$this->connection->executeStatement(
'UPDATE pg_attribute SET attrelid = ? WHERE attrelid = ?',
[$conflictingOid, $originalTableOid],
);
$this->connection->executeStatement(
'UPDATE pg_description SET objoid = ? WHERE objoid = ?',
[$conflictingOid, $originalTableOid],
);
$this->connection->executeStatement(
'UPDATE pg_class SET oid = ? WHERE oid = ?',
[$conflictingOid, $originalTableOid],
);
$afterColumns = $this->schemaManager->listTableColumns($table);
// revert to the database to original state prior to asserting result
$this->connection->executeStatement(
'UPDATE pg_attribute SET attrelid = ? WHERE attrelid = ?',
[$originalTableOid, $conflictingOid],
);
$this->connection->executeStatement(
'UPDATE pg_description SET objoid = ? WHERE objoid = ?',
[$originalTableOid, $conflictingOid],
);
$this->connection->executeStatement(
'UPDATE pg_class SET oid = ? WHERE oid = ?',
[$originalTableOid, $conflictingOid],
);
$this->connection->executeStatement(sprintf('DROP TABLE IF EXISTS %s', $table));
$this->connection->executeStatement('DROP EXTENSION IF EXISTS pg_prewarm');
self::assertArrayHasKey('id', $afterColumns);
}
/** @return iterable<mixed[]> */
public static function autoIncrementTypeMigrations(): iterable
{
return [
'int->bigint' => ['integer', 'bigint', 'BIGINT'],
'bigint->int' => ['bigint', 'integer', 'INT'],
];
}
public function testPartitionTable(): void
{
$this->connection->executeStatement('DROP TABLE IF EXISTS partitioned_table');
$this->connection->executeStatement(
'CREATE TABLE partitioned_table (id INT) PARTITION BY LIST (id);',
);
$this->connection->executeStatement('CREATE TABLE partition PARTITION OF partitioned_table FOR VALUES IN (1);');
try {
$this->schemaManager->introspectTable('partition');
} catch (TableDoesNotExist $e) {
}
self::assertNotNull($e ?? null, 'Partition table should not be introspected');
$tableFrom = $this->schemaManager->introspectTable('partitioned_table');
$tableTo = $this->schemaManager->introspectTable('partitioned_table');
$tableTo->addColumn('foo', Types::INTEGER);
$platform = $this->connection->getDatabasePlatform();
$diff = $this->schemaManager->createComparator()->compareTables($tableFrom, $tableTo);
$sql = $platform->getAlterTableSQL($diff);
self::assertSame(['ALTER TABLE partitioned_table ADD foo INT NOT NULL'], $sql);
$this->schemaManager->alterTable($diff);
$tableFinal = $this->schemaManager->introspectTable('partitioned_table');
self::assertTrue($tableFinal->hasColumn('id'));
self::assertTrue($tableFinal->hasColumn('foo'));
$partitionedTableCount = (int) ($this->connection->fetchOne(
"select count(*) as count from pg_class where relname = 'partitioned_table' and relkind = 'p'",
));
self::assertSame(1, $partitionedTableCount);
$partitionsCount = (int) ($this->connection->fetchOne(
<<<'SQL'
select count(*) as count
from pg_class parent
inner join pg_inherits on pg_inherits.inhparent = parent.oid
inner join pg_class child on pg_inherits.inhrelid = child.oid
and child.relkind = 'r'
and child.relname = 'partition'
where parent.relname = 'partitioned_table' and parent.relkind = 'p';
SQL,
));
self::assertSame(1, $partitionsCount);
}
}
class MoneyType extends Type
{
/**
* {@inheritDoc}
*/
public function getSQLDeclaration(array $column, AbstractPlatform $platform): string
{
return 'MyMoney';
}
}