| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 11 | class Oracle122Platform extends OraclePlatform |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * {@inheritDoc} |
||
| 15 | * |
||
| 16 | * @param string $schemaElementName |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function fixSchemaElementName($schemaElementName) |
||
| 21 | { |
||
| 22 | if (strlen($schemaElementName) > 128) { |
||
| 23 | // Trim it |
||
| 24 | return substr($schemaElementName, 0, 128); |
||
| 25 | } |
||
| 26 | |||
| 27 | return $schemaElementName; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritDoc} |
||
| 32 | * |
||
| 33 | * @return int |
||
| 34 | */ |
||
| 35 | public function getMaxIdentifierLength() |
||
| 38 | } |
||
| 39 | } |
||
| 40 |