From 04cf068dc5eca741f4e523299a306d8cac349819 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Fri, 18 Jan 2013 14:16:32 +0100 Subject: [PATCH] fix incorrect description of BLOB --- libraries/Types.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Types.class.php b/libraries/Types.class.php index 497bd30e98..81e037e1f1 100644 --- a/libraries/Types.class.php +++ b/libraries/Types.class.php @@ -733,7 +733,7 @@ class PMA_Types_Drizzle extends PMA_Types case 'VARBINARY': return __('A variable-length (0-65,535) string, uses binary collation for all comparisons'); case 'BLOB': - return __('A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with a four-byte prefix indicating the length of the value'); + return __('A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with a two-byte prefix indicating the length of the value'); case 'ENUM': return __("An enumeration, chosen from the list of defined values"); }