summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2004-03-22 11:18:29 +0200
committerunknown <monty@mysql.com>2004-03-22 11:18:29 +0200
commit071aed698030bdfec0918911daf242df77eb3a0f (patch)
treeaa59867d7a5bde19be801b4589fe28022e39c702
parent331ff0d8f5e092b9672f66d135d6209897b25846 (diff)
downloadmariadb-git-071aed698030bdfec0918911daf242df77eb3a0f.tar.gz
Fixed wrong 'mysql.func' definition
-rw-r--r--mysql-test/install_test_db.sh2
-rw-r--r--mysql-test/r/system_mysql_db.result2
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',