From e0891aedca366a9ba15b0ac8822a119ba30d7d28 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 13 Apr 2015 14:13:02 +0200 Subject: [PATCH] DbTool: Add mysql context identifiers for the REFERENCES privilege Though this privilege is not in use until mysql version 5.7.6 it is registered as privilege in the privilege tables in earlier versions. refs #8707 --- modules/setup/library/Setup/Utils/DbTool.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/setup/library/Setup/Utils/DbTool.php b/modules/setup/library/Setup/Utils/DbTool.php index 3073778c8..3e5fb479c 100644 --- a/modules/setup/library/Setup/Utils/DbTool.php +++ b/modules/setup/library/Setup/Utils/DbTool.php @@ -78,7 +78,7 @@ class DbTool 'INSERT' => 29, 'LOCK TABLES' => 5, 'PROCESS' => 1, - 'REFERENCES' => 0, + 'REFERENCES' => 12, 'RELOAD' => 1, 'REPLICATION CLIENT' => 1, 'REPLICATION SLAVE' => 1,