From f0c44b29b8f7b3ae6bf92a54c1877df3d360389d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 1 Jun 2015 15:01:20 +0530 Subject: [PATCH] bug #4932 Drizzle version numbers Signed-off-by: Madhura Jayaratne --- ChangeLog | 1 + libraries/Types.class.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d780058438..dbcfd7ed5b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -46,6 +46,7 @@ phpMyAdmin - ChangeLog - bug #4872 Drop table doesn't remove the table name from navigation bar + rfe #1675 MySQL and MariaDB functions INET6_ATON and INET6_NTOA - bug Link to get real row counts of all the views in a db, at once +- bug #4932 Drizzle version numbers 4.4.9.0 (not yet released) - bug #4920 relation view doesn't list fields of table in other database diff --git a/libraries/Types.class.php b/libraries/Types.class.php index 4e9d65be94..fe5aab8756 100644 --- a/libraries/Types.class.php +++ b/libraries/Types.class.php @@ -1037,7 +1037,7 @@ class PMA_Types_Drizzle extends PMA_Types '-', 'ENUM', ); - if (PMA_MYSQL_INT_VERSION >= 20120130) { + if (PMA_DRIZZLE && PMA_MYSQL_INT_VERSION >= 70132) { $types_string[] = '-'; $types_string[] = 'IPV6'; }