| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class PostgreSQL100Platform extends PostgreSQL94Platform |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | 51 | protected function getReservedKeywordsClass() : string |
|
| 21 | { |
||
| 22 | 51 | return PostgreSQL100Keywords::class; |
|
| 23 | } |
||
| 24 | |||
| 25 | public function getListSequencesSQL($database) : string |
||
| 33 | AND sequence_schema NOT LIKE 'pg\_%' |
||
| 34 | AND sequence_schema != 'information_schema'"; |
||
| 37 |