From 5f8cdaa4bcd13a99a96d554997f56e0d93e435fd Mon Sep 17 00:00:00 2001
From: unknown <monty@mysql.com>
Date: Mon, 22 Mar 2004 11:18:29 +0200
Subject: [PATCH] Fixed wrong 'mysql.func' definition

---
 mysql-test/install_test_db.sh       | 2 +-
 mysql-test/r/system_mysql_db.result | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mysql-test/install_test_db.sh b/mysql-test/install_test_db.sh
index 3b361b8afec..0b95809037f 100644
--- a/mysql-test/install_test_db.sh
+++ b/mysql-test/install_test_db.sh
@@ -173,7 +173,7 @@ fi
 if test ! -f $mdata/func.frm
 then
   c_f="$c_f CREATE TABLE func ("
-  c_f="$c_f   name char(64) DEFAULT '' NOT NULL,"
+  c_f="$c_f   name char(64) binary DEFAULT '' NOT NULL,"
   c_f="$c_f   ret tinyint(1) DEFAULT '0' NOT NULL,"
   c_f="$c_f   dl char(128) DEFAULT '' NOT NULL,"
   c_f="$c_f   type enum ('function','aggregate') NOT NULL,"
diff --git a/mysql-test/r/system_mysql_db.result b/mysql-test/r/system_mysql_db.result
index 257b3b13f08..59cb6c38a59 100644
--- a/mysql-test/r/system_mysql_db.result
+++ b/mysql-test/r/system_mysql_db.result
@@ -85,7 +85,7 @@ user	CREATE TABLE `user` (
 show create table func;
 Table	Create Table
 func	CREATE TABLE `func` (
-  `name` char(64) NOT NULL default '',
+  `name` char(64) binary NOT NULL default '',
   `ret` tinyint(1) NOT NULL default '0',
   `dl` char(128) NOT NULL default '',
   `type` enum('function','aggregate') NOT NULL default 'function',
-- 
2.30.9