Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | protected function setUp() : void |
||
13 | { |
||
14 | parent::setUp(); |
||
15 | |||
16 | $platform = $this->connection->getDatabasePlatform()->getName(); |
||
17 | |||
18 | if ($platform !== 'mssql') { |
||
19 | $this->markTestSkipped('Currently restricted to MSSQL'); |
||
20 | } |
||
21 | |||
22 | $this->connection->query('CREATE TABLE dbal3516(id INT IDENTITY, test int);'); |
||
23 | $this->connection->query('CREATE TABLE dbal3516help(id INT IDENTITY, test int);'); |
||
24 | $this->connection->query(<<<SQL |
||
25 | CREATE TRIGGER dbal3516_after_insert ON dbal3516 AFTER INSERT AS |
||
45 |