From fc86ebddfcce5e0bf1277fb82a630571b8902288 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=CC=87smail=20BASKIN?= Date: Fri, 26 Feb 2016 13:18:18 +0200 Subject: [PATCH] update mysql 5.7.8 reserved keywords --- lib/Doctrine/DBAL/Platforms/MySQL578Platform.php | 8 ++++++++ 1 file changed, 8 insertions(+) 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'; + } }