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