From 4cf5fe79978bb4bbddfc0002c83926cead658587 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 23 Aug 2011 22:37:24 +0200 Subject: [PATCH] Exclude data_dictionary from server synchronize (Drizzle) --- server_synchronize.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server_synchronize.php b/server_synchronize.php index 3e7db692c5..8057f892b4 100644 --- a/server_synchronize.php +++ b/server_synchronize.php @@ -1274,6 +1274,9 @@ if (! isset($_REQUEST['submit_connect']) // these unset() do not complain if the elements do not exist unset($databases['mysql']); unset($databases['information_schema']); + if (PMA_DRIZZLE) { + unset($databases['data_dictionary']); + } if (count($databases) == 0) { echo __('No databases');