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
<?php
namespace Doctrine\Tests\DBAL\Platforms;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\DB2Platform;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\ColumnDiff;
use Doctrine\DBAL\Schema\Index;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Schema\TableDiff;
use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Types\Types;
class DB2PlatformTest extends AbstractPlatformTestCase
{
/** @var DB2Platform */
protected $platform;
public function createPlatform() : AbstractPlatform
{
return new DB2Platform();
}
/**
* {@inheritDoc}
*/
public function getGenerateAlterTableSql() : array
{
return [
'ALTER TABLE mytable ALTER COLUMN baz SET DATA TYPE VARCHAR(255)',
'ALTER TABLE mytable ALTER COLUMN baz SET NOT NULL',
"ALTER TABLE mytable ALTER COLUMN baz SET DEFAULT 'def'",
'ALTER TABLE mytable ALTER COLUMN bloo SET DATA TYPE SMALLINT',
'ALTER TABLE mytable ALTER COLUMN bloo SET NOT NULL',
"ALTER TABLE mytable ALTER COLUMN bloo SET DEFAULT '0'",
'ALTER TABLE mytable ' .
'ADD COLUMN quota INTEGER DEFAULT NULL ' .
'DROP COLUMN foo',
"CALL SYSPROC.ADMIN_CMD ('REORG TABLE mytable')",
'RENAME TABLE mytable TO userlist',
];
}
public function getGenerateForeignKeySql() : string
{
return 'ALTER TABLE test ADD FOREIGN KEY (fk_name_id) REFERENCES other_table (id)';
}
public function getGenerateIndexSql() : string
{
return 'CREATE INDEX my_idx ON mytable (user_name, last_login)';
}
public function getGenerateTableSql() : string
{
return 'CREATE TABLE test (id INTEGER 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 getGenerateUniqueIndexSql() : string
{
return 'CREATE UNIQUE INDEX index_name ON test (test, test2)';
}
/**
* {@inheritDoc}
*/
protected function getQuotedColumnInForeignKeySQL() : array
{
return [
'CREATE TABLE "quoted" ("create" VARCHAR(255) NOT NULL, foo VARCHAR(255) NOT NULL, "bar" VARCHAR(255) NOT NULL)',
'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")',
];
}
/**
* {@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 getQuotedColumnInPrimaryKeySQL() : array
{
return ['CREATE TABLE "quoted" ("create" VARCHAR(255) NOT NULL, PRIMARY KEY("create"))'];
}
protected function getBitAndComparisonExpressionSql(string $value1, string $value2) : string
{
return 'BITAND(' . $value1 . ', ' . $value2 . ')';
}
protected function getBitOrComparisonExpressionSql(string $value1, string $value2) : string
{
return 'BITOR(' . $value1 . ', ' . $value2 . ')';
}
/**
* {@inheritDoc}
*/
public function getCreateTableColumnCommentsSQL() : array
{
return [
'CREATE TABLE test (id INTEGER NOT NULL, PRIMARY KEY(id))',
"COMMENT ON COLUMN test.id IS 'This is a comment'",
];
}
/**
* {@inheritDoc}
*/
public function getAlterTableColumnCommentsSQL() : array
{
return [
'ALTER TABLE mytable ' .
'ADD COLUMN quota INTEGER NOT NULL WITH DEFAULT',
"CALL SYSPROC.ADMIN_CMD ('REORG TABLE mytable')",
"COMMENT ON COLUMN mytable.quota IS 'A comment'",
"COMMENT ON COLUMN mytable.foo IS ''",
"COMMENT ON COLUMN mytable.baz IS 'B comment'",
];
}
/**
* {@inheritDoc}
*/
public function getCreateTableColumnTypeCommentsSQL() : array
{
return [
'CREATE TABLE test (id INTEGER NOT NULL, "data" CLOB(1M) NOT NULL, PRIMARY KEY(id))',
'COMMENT ON COLUMN test."data" IS \'(DC2Type:array)\'',
];
}
public function testHasCorrectPlatformName() : void
{
self::assertEquals('db2', $this->platform->getName());
}
public function testGeneratesCreateTableSQLWithCommonIndexes() : void
{
$table = new Table('test');
$table->addColumn('id', 'integer');
$table->addColumn('name', 'string', ['length' => 50]);
$table->setPrimaryKey(['id']);
$table->addIndex(['name']);
$table->addIndex(['id', 'name'], 'composite_idx');
self::assertEquals(
[
'CREATE TABLE test (id INTEGER NOT NULL, name VARCHAR(50) NOT NULL, PRIMARY KEY(id))',
'CREATE INDEX IDX_D87F7E0C5E237E06 ON test (name)',
'CREATE INDEX composite_idx ON test (id, name)',
],
$this->platform->getCreateTableSQL($table)
);
}
public function testGeneratesCreateTableSQLWithForeignKeyConstraints() : void
{
$table = new Table('test');
$table->addColumn('id', 'integer');
$table->addColumn('fk_1', 'integer');
$table->addColumn('fk_2', 'integer');
$table->setPrimaryKey(['id']);
$table->addForeignKeyConstraint('foreign_table', ['fk_1', 'fk_2'], ['pk_1', 'pk_2']);
$table->addForeignKeyConstraint(
'foreign_table2',
['fk_1', 'fk_2'],
['pk_1', 'pk_2'],
[],
'named_fk'
);
self::assertEquals(
[
'CREATE TABLE test (id INTEGER NOT NULL, fk_1 INTEGER NOT NULL, fk_2 INTEGER NOT NULL)',
'ALTER TABLE test ADD CONSTRAINT FK_D87F7E0C177612A38E7F4319 FOREIGN KEY (fk_1, fk_2) REFERENCES foreign_table (pk_1, pk_2)',
'ALTER TABLE test ADD CONSTRAINT named_fk FOREIGN KEY (fk_1, fk_2) REFERENCES foreign_table2 (pk_1, pk_2)',
],
$this->platform->getCreateTableSQL($table, AbstractPlatform::CREATE_FOREIGNKEYS)
);
}
public function testGeneratesCreateTableSQLWithCheckConstraints() : void
{
$table = new Table('test');
$table->addColumn('id', 'integer');
$table->addColumn('check_max', 'integer', ['platformOptions' => ['max' => 10]]);
$table->addColumn('check_min', 'integer', ['platformOptions' => ['min' => 10]]);
$table->setPrimaryKey(['id']);
self::assertEquals(
['CREATE TABLE test (id INTEGER NOT NULL, check_max INTEGER NOT NULL, check_min INTEGER NOT NULL, PRIMARY KEY(id), CHECK (check_max <= 10), CHECK (check_min >= 10))'],
$this->platform->getCreateTableSQL($table)
);
}
public function testGeneratesColumnTypesDeclarationSQL() : void
{
$fullColumnDef = [
'length' => 10,
'fixed' => true,
'unsigned' => true,
'autoincrement' => true,
];
self::assertEquals('VARCHAR(255)', $this->platform->getVarcharTypeDeclarationSQL([]));
self::assertEquals('VARCHAR(10)', $this->platform->getVarcharTypeDeclarationSQL(['length' => 10]));
self::assertEquals('CHAR(254)', $this->platform->getVarcharTypeDeclarationSQL(['fixed' => true]));
self::assertEquals('CHAR(10)', $this->platform->getVarcharTypeDeclarationSQL($fullColumnDef));
self::assertEquals('SMALLINT', $this->platform->getSmallIntTypeDeclarationSQL([]));
self::assertEquals('SMALLINT', $this->platform->getSmallIntTypeDeclarationSQL(['unsigned' => true]));
self::assertEquals('SMALLINT GENERATED BY DEFAULT AS IDENTITY', $this->platform->getSmallIntTypeDeclarationSQL($fullColumnDef));
self::assertEquals('INTEGER', $this->platform->getIntegerTypeDeclarationSQL([]));
self::assertEquals('INTEGER', $this->platform->getIntegerTypeDeclarationSQL(['unsigned' => true]));
self::assertEquals('INTEGER GENERATED BY DEFAULT AS IDENTITY', $this->platform->getIntegerTypeDeclarationSQL($fullColumnDef));
self::assertEquals('BIGINT', $this->platform->getBigIntTypeDeclarationSQL([]));
self::assertEquals('BIGINT', $this->platform->getBigIntTypeDeclarationSQL(['unsigned' => true]));
self::assertEquals('BIGINT GENERATED BY DEFAULT AS IDENTITY', $this->platform->getBigIntTypeDeclarationSQL($fullColumnDef));
self::assertEquals('BLOB(1M)', $this->platform->getBlobTypeDeclarationSQL($fullColumnDef));
self::assertEquals('SMALLINT', $this->platform->getBooleanTypeDeclarationSQL($fullColumnDef));
self::assertEquals('CLOB(1M)', $this->platform->getClobTypeDeclarationSQL($fullColumnDef));
self::assertEquals('DATE', $this->platform->getDateTypeDeclarationSQL($fullColumnDef));
self::assertEquals('TIMESTAMP(0) WITH DEFAULT', $this->platform->getDateTimeTypeDeclarationSQL(['version' => true]));
self::assertEquals('TIMESTAMP(0)', $this->platform->getDateTimeTypeDeclarationSQL($fullColumnDef));
self::assertEquals('TIME', $this->platform->getTimeTypeDeclarationSQL($fullColumnDef));
}
public function testInitializesDoctrineTypeMappings() : void
{
$this->platform->initializeDoctrineTypeMappings();
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('smallint'));
self::assertSame('smallint', $this->platform->getDoctrineTypeMapping('smallint'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('bigint'));
self::assertSame('bigint', $this->platform->getDoctrineTypeMapping('bigint'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('integer'));
self::assertSame('integer', $this->platform->getDoctrineTypeMapping('integer'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('time'));
self::assertSame('time', $this->platform->getDoctrineTypeMapping('time'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('date'));
self::assertSame('date', $this->platform->getDoctrineTypeMapping('date'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('varchar'));
self::assertSame('string', $this->platform->getDoctrineTypeMapping('varchar'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('character'));
self::assertSame('string', $this->platform->getDoctrineTypeMapping('character'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('clob'));
self::assertSame('text', $this->platform->getDoctrineTypeMapping('clob'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('blob'));
self::assertSame('blob', $this->platform->getDoctrineTypeMapping('blob'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('decimal'));
self::assertSame('decimal', $this->platform->getDoctrineTypeMapping('decimal'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('double'));
self::assertSame('float', $this->platform->getDoctrineTypeMapping('double'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('real'));
self::assertSame('float', $this->platform->getDoctrineTypeMapping('real'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('timestamp'));
self::assertSame('datetime', $this->platform->getDoctrineTypeMapping('timestamp'));
}
/**
* {@inheritDoc}
*/
public function getIsCommentedDoctrineType() : array
{
$data = parent::getIsCommentedDoctrineType();
$data[Types::BOOLEAN] = [Type::getType(Types::BOOLEAN), true];
return $data;
}
public function testGeneratesDDLSnippets() : void
{
self::assertEquals('CREATE DATABASE foobar', $this->platform->getCreateDatabaseSQL('foobar'));
self::assertEquals('DROP DATABASE foobar', $this->platform->getDropDatabaseSQL('foobar'));
self::assertEquals('DECLARE GLOBAL TEMPORARY TABLE', $this->platform->getCreateTemporaryTableSnippetSQL());
self::assertEquals('TRUNCATE foobar IMMEDIATE', $this->platform->getTruncateTableSQL('foobar'));
self::assertEquals('TRUNCATE foobar IMMEDIATE', $this->platform->getTruncateTableSQL('foobar'), true);
$viewSql = 'SELECT * FROM footable';
self::assertEquals('CREATE VIEW fooview AS ' . $viewSql, $this->platform->getCreateViewSQL('fooview', $viewSql));
self::assertEquals('DROP VIEW fooview', $this->platform->getDropViewSQL('fooview'));
}
public function testGeneratesCreateUnnamedPrimaryKeySQL() : void
{
self::assertEquals(
'ALTER TABLE foo ADD PRIMARY KEY (a, b)',
$this->platform->getCreatePrimaryKeySQL(
new Index('any_pk_name', ['a', 'b'], true, true),
'foo'
)
);
}
public function testGeneratesSQLSnippets() : void
{
self::assertEquals('CURRENT DATE', $this->platform->getCurrentDateSQL());
self::assertEquals('CURRENT TIME', $this->platform->getCurrentTimeSQL());
self::assertEquals('CURRENT TIMESTAMP', $this->platform->getCurrentTimestampSQL());
self::assertEquals("'1987/05/02' + 4 DAY", $this->platform->getDateAddDaysExpression("'1987/05/02'", 4));
self::assertEquals("'1987/05/02' + 12 HOUR", $this->platform->getDateAddHourExpression("'1987/05/02'", 12));
self::assertEquals("'1987/05/02' + 2 MINUTE", $this->platform->getDateAddMinutesExpression("'1987/05/02'", 2));
self::assertEquals("'1987/05/02' + 102 MONTH", $this->platform->getDateAddMonthExpression("'1987/05/02'", 102));
self::assertEquals("'1987/05/02' + 15 MONTH", $this->platform->getDateAddQuartersExpression("'1987/05/02'", 5));
self::assertEquals("'1987/05/02' + 1 SECOND", $this->platform->getDateAddSecondsExpression("'1987/05/02'", 1));
self::assertEquals("'1987/05/02' + 21 DAY", $this->platform->getDateAddWeeksExpression("'1987/05/02'", 3));
self::assertEquals("'1987/05/02' + 10 YEAR", $this->platform->getDateAddYearsExpression("'1987/05/02'", 10));
self::assertEquals("DAYS('1987/05/02') - DAYS('1987/04/01')", $this->platform->getDateDiffExpression("'1987/05/02'", "'1987/04/01'"));
self::assertEquals("'1987/05/02' - 4 DAY", $this->platform->getDateSubDaysExpression("'1987/05/02'", 4));
self::assertEquals("'1987/05/02' - 12 HOUR", $this->platform->getDateSubHourExpression("'1987/05/02'", 12));
self::assertEquals("'1987/05/02' - 2 MINUTE", $this->platform->getDateSubMinutesExpression("'1987/05/02'", 2));
self::assertEquals("'1987/05/02' - 102 MONTH", $this->platform->getDateSubMonthExpression("'1987/05/02'", 102));
self::assertEquals("'1987/05/02' - 15 MONTH", $this->platform->getDateSubQuartersExpression("'1987/05/02'", 5));
self::assertEquals("'1987/05/02' - 1 SECOND", $this->platform->getDateSubSecondsExpression("'1987/05/02'", 1));
self::assertEquals("'1987/05/02' - 21 DAY", $this->platform->getDateSubWeeksExpression("'1987/05/02'", 3));
self::assertEquals("'1987/05/02' - 10 YEAR", $this->platform->getDateSubYearsExpression("'1987/05/02'", 10));
self::assertEquals(' WITH RR USE AND KEEP UPDATE LOCKS', $this->platform->getForUpdateSQL());
self::assertEquals('LOCATE(substring_column, string_column)', $this->platform->getLocateExpression('string_column', 'substring_column'));
self::assertEquals('LOCATE(substring_column, string_column)', $this->platform->getLocateExpression('string_column', 'substring_column'));
self::assertEquals('LOCATE(substring_column, string_column, 1)', $this->platform->getLocateExpression('string_column', 'substring_column', 1));
self::assertEquals('SUBSTR(column, 5)', $this->platform->getSubstringExpression('column', 5));
self::assertEquals('SUBSTR(column, 5, 2)', $this->platform->getSubstringExpression('column', 5, 2));
}
public function testModifiesLimitQuery() : void
{
self::assertEquals(
'SELECT * FROM user',
$this->platform->modifyLimitQuery('SELECT * FROM user', null, null)
);
self::assertEquals(
'SELECT db22.* FROM (SELECT db21.*, ROW_NUMBER() OVER() AS DC_ROWNUM FROM (SELECT * FROM user) db21) db22 WHERE db22.DC_ROWNUM <= 10',
$this->platform->modifyLimitQuery('SELECT * FROM user', 10, 0)
);
self::assertEquals(
'SELECT db22.* FROM (SELECT db21.*, ROW_NUMBER() OVER() AS DC_ROWNUM FROM (SELECT * FROM user) db21) db22 WHERE db22.DC_ROWNUM <= 10',
$this->platform->modifyLimitQuery('SELECT * FROM user', 10)
);
self::assertEquals(
'SELECT db22.* FROM (SELECT db21.*, ROW_NUMBER() OVER() AS DC_ROWNUM FROM (SELECT * FROM user) db21) db22 WHERE db22.DC_ROWNUM >= 6 AND db22.DC_ROWNUM <= 15',
$this->platform->modifyLimitQuery('SELECT * FROM user', 10, 5)
);
self::assertEquals(
'SELECT db22.* FROM (SELECT db21.*, ROW_NUMBER() OVER() AS DC_ROWNUM FROM (SELECT * FROM user) db21) db22 WHERE db22.DC_ROWNUM >= 6 AND db22.DC_ROWNUM <= 5',
$this->platform->modifyLimitQuery('SELECT * FROM user', 0, 5)
);
}
public function testPrefersIdentityColumns() : void
{
self::assertTrue($this->platform->prefersIdentityColumns());
}
public function testSupportsIdentityColumns() : void
{
self::assertTrue($this->platform->supportsIdentityColumns());
}
public function testDoesNotSupportSavePoints() : void
{
self::assertFalse($this->platform->supportsSavepoints());
}
public function testDoesNotSupportReleasePoints() : void
{
self::assertFalse($this->platform->supportsReleaseSavepoints());
}
public function testDoesNotSupportCreateDropDatabase() : void
{
self::assertFalse($this->platform->supportsCreateDropDatabase());
}
public function testReturnsSQLResultCasing() : void
{
self::assertSame('COL', $this->platform->getSQLResultCasing('cOl'));
}
protected function getBinaryDefaultLength() : int
{
return 1;
}
protected function getBinaryMaxLength() : int
{
return 32704;
}
public function testReturnsBinaryTypeDeclarationSQL() : void
{
self::assertSame('VARCHAR(1) FOR BIT DATA', $this->platform->getBinaryTypeDeclarationSQL([]));
self::assertSame('VARCHAR(255) FOR BIT DATA', $this->platform->getBinaryTypeDeclarationSQL(['length' => 0]));
self::assertSame('VARCHAR(32704) FOR BIT DATA', $this->platform->getBinaryTypeDeclarationSQL(['length' => 32704]));
self::assertSame('CHAR(1) FOR BIT DATA', $this->platform->getBinaryTypeDeclarationSQL(['fixed' => true]));
self::assertSame('CHAR(254) FOR BIT DATA', $this->platform->getBinaryTypeDeclarationSQL(['fixed' => true, 'length' => 0]));
}
/**
* @group legacy
* @expectedDeprecation Binary field length 32705 is greater than supported by the platform (32704). Reduce the field length or use a BLOB field instead.
*/
public function testReturnsBinaryTypeLongerThanMaxDeclarationSQL() : void
{
self::assertSame('BLOB(1M)', $this->platform->getBinaryTypeDeclarationSQL(['length' => 32705]));
self::assertSame('BLOB(1M)', $this->platform->getBinaryTypeDeclarationSQL(['fixed' => true, 'length' => 32705]));
}
/**
* {@inheritDoc}
*
* @group DBAL-234
*/
protected function getAlterTableRenameIndexSQL() : array
{
return ['RENAME INDEX idx_foo TO idx_bar'];
}
/**
* {@inheritDoc}
*
* @group DBAL-234
*/
protected function getQuotedAlterTableRenameIndexSQL() : array
{
return [
'RENAME INDEX "create" TO "select"',
'RENAME INDEX "foo" TO "bar"',
];
}
/**
* {@inheritdoc}
*/
protected function getQuotedAlterTableRenameColumnSQL() : array
{
return ['ALTER TABLE mytable ' .
'RENAME COLUMN unquoted1 TO unquoted ' .
'RENAME COLUMN unquoted2 TO "where" ' .
'RENAME COLUMN unquoted3 TO "foo" ' .
'RENAME COLUMN "create" TO reserved_keyword ' .
'RENAME COLUMN "table" TO "from" ' .
'RENAME COLUMN "select" TO "bar" ' .
'RENAME COLUMN quoted1 TO quoted ' .
'RENAME COLUMN quoted2 TO "and" ' .
'RENAME COLUMN quoted3 TO "baz"',
];
}
/**
* {@inheritdoc}
*/
protected function getQuotedAlterTableChangeColumnLengthSQL() : array
{
$this->markTestIncomplete('Not implemented yet');
}
/**
* {@inheritDoc}
*
* @group DBAL-807
*/
protected function getAlterTableRenameIndexInSchemaSQL() : array
{
return ['RENAME INDEX myschema.idx_foo TO idx_bar'];
}
/**
* {@inheritDoc}
*
* @group DBAL-807
*/
protected function getQuotedAlterTableRenameIndexInSchemaSQL() : array
{
return [
'RENAME INDEX "schema"."create" TO "select"',
'RENAME INDEX "schema"."foo" TO "bar"',
];
}
/**
* @group DBAL-423
*/
public function testReturnsGuidTypeDeclarationSQL() : void
{
self::assertSame('CHAR(36)', $this->platform->getGuidTypeDeclarationSQL([]));
}
/**
* {@inheritdoc}
*/
public function getAlterTableRenameColumnSQL() : array
{
return ['ALTER TABLE foo RENAME COLUMN bar TO baz'];
}
/**
* {@inheritdoc}
*/
protected function getQuotesTableIdentifiersInAlterTableSQL() : array
{
return [
'ALTER TABLE "foo" DROP FOREIGN KEY fk1',
'ALTER TABLE "foo" DROP FOREIGN KEY fk2',
'ALTER TABLE "foo" ' .
'ADD COLUMN bloo INTEGER NOT NULL WITH DEFAULT ' .
'DROP COLUMN baz ' .
'ALTER COLUMN bar DROP NOT NULL ' .
'RENAME COLUMN id TO war',
'CALL SYSPROC.ADMIN_CMD (\'REORG TABLE "foo"\')',
'RENAME TABLE "foo" TO "table"',
'ALTER TABLE "table" ADD CONSTRAINT fk_add FOREIGN KEY (fk3) REFERENCES fk_table (id)',
'ALTER TABLE "table" ADD CONSTRAINT fk2 FOREIGN KEY (fk2) REFERENCES fk_table2 (id)',
];
}
/**
* {@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\'',
];
}
/**
* @group DBAL-944
* @dataProvider getGeneratesAlterColumnSQL
*/
public function testGeneratesAlterColumnSQL(string $changedProperty, Column $column, ?string $expectedSQLClause = null) : void
{
$tableDiff = new TableDiff('foo');
$tableDiff->fromTable = new Table('foo');
$tableDiff->changedColumns['bar'] = new ColumnDiff('bar', $column, [$changedProperty]);
$expectedSQL = [];
if ($expectedSQLClause !== null) {
$expectedSQL[] = 'ALTER TABLE foo ALTER COLUMN bar ' . $expectedSQLClause;
}
$expectedSQL[] = "CALL SYSPROC.ADMIN_CMD ('REORG TABLE foo')";
self::assertSame($expectedSQL, $this->platform->getAlterTableSQL($tableDiff));
}
/**
* @return mixed[][]
*/
public static function getGeneratesAlterColumnSQL() : iterable
{
return [
[
'columnDefinition',
new Column('bar', Type::getType('decimal'), ['columnDefinition' => 'MONEY NOT NULL']),
'MONEY NOT NULL',
],
[
'type',
new Column('bar', Type::getType('integer')),
'SET DATA TYPE INTEGER',
],
[
'length',
new Column('bar', Type::getType('string'), ['length' => 100]),
'SET DATA TYPE VARCHAR(100)',
],
[
'precision',
new Column('bar', Type::getType('decimal'), ['precision' => 10, 'scale' => 2]),
'SET DATA TYPE NUMERIC(10, 2)',
],
[
'scale',
new Column('bar', Type::getType('decimal'), ['precision' => 5, 'scale' => 4]),
'SET DATA TYPE NUMERIC(5, 4)',
],
[
'fixed',
new Column('bar', Type::getType('string'), ['length' => 20, 'fixed' => true]),
'SET DATA TYPE CHAR(20)',
],
[
'notnull',
new Column('bar', Type::getType('string'), ['notnull' => true]),
'SET NOT NULL',
],
[
'notnull',
new Column('bar', Type::getType('string'), ['notnull' => false]),
'DROP NOT NULL',
],
[
'default',
new Column('bar', Type::getType('string'), ['default' => 'foo']),
"SET DEFAULT 'foo'",
],
[
'default',
new Column('bar', Type::getType('integer'), ['autoincrement' => true, 'default' => 666]),
null,
],
[
'default',
new Column('bar', Type::getType('string')),
'DROP DEFAULT',
],
];
}
/**
* {@inheritdoc}
*/
protected function getQuotesReservedKeywordInUniqueConstraintDeclarationSQL() : string
{
return 'CONSTRAINT "select" UNIQUE (foo)';
}
/**
* {@inheritdoc}
*/
protected function getQuotesReservedKeywordInIndexDeclarationSQL() : string
{
return ''; // not supported by this platform
}
/**
* {@inheritdoc}
*/
protected function getQuotesReservedKeywordInTruncateTableSQL() : string
{
return 'TRUNCATE "select" IMMEDIATE';
}
/**
* {@inheritdoc}
*/
protected function supportsInlineIndexDeclaration() : bool
{
return false;
}
/**
* {@inheritdoc}
*/
protected function supportsCommentOnStatement() : bool
{
return true;
}
/**
* {@inheritdoc}
*/
protected function getAlterStringToFixedStringSQL() : array
{
return [
'ALTER TABLE mytable ALTER COLUMN name SET DATA TYPE CHAR(2)',
'CALL SYSPROC.ADMIN_CMD (\'REORG TABLE mytable\')',
];
}
/**
* {@inheritdoc}
*/
protected function getGeneratesAlterTableRenameIndexUsedByForeignKeySQL() : array
{
return ['RENAME INDEX idx_foo TO idx_foo_renamed'];
}
/**
* @group DBAL-2436
*/
public function testQuotesTableNameInListTableColumnsSQL() : void
{
self::assertStringContainsStringIgnoringCase(
"'Foo''Bar\\'",
$this->platform->getListTableColumnsSQL("Foo'Bar\\")
);
}
/**
* @group DBAL-2436
*/
public function testQuotesTableNameInListTableIndexesSQL() : void
{
self::assertStringContainsStringIgnoringCase(
"'Foo''Bar\\'",
$this->platform->getListTableIndexesSQL("Foo'Bar\\")
);
}
/**
* @group DBAL-2436
*/
public function testQuotesTableNameInListTableForeignKeysSQL() : void
{
self::assertStringContainsStringIgnoringCase(
"'Foo''Bar\\'",
$this->platform->getListTableForeignKeysSQL("Foo'Bar\\")
);
}
}