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