diff --git a/lib/Doctrine/DBAL/Platforms/MySQL578Platform.php b/lib/Doctrine/DBAL/Platforms/MySQL578Platform.php index ecaf7fc81cf..6857f4d6c08 100644 --- a/lib/Doctrine/DBAL/Platforms/MySQL578Platform.php +++ b/lib/Doctrine/DBAL/Platforms/MySQL578Platform.php @@ -53,4 +53,12 @@ public function getJsonTypeDeclarationSQL(array $field) { return 'JSON'; } + + /** + * {@inheritdoc} + */ + protected function getReservedKeywordsClass() + { + return 'Doctrine\DBAL\Platforms\Keywords\MySQL578Keywords'; + } }