summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoerg@mysql.com <>2005-10-14 13:35:36 +0200
committerjoerg@mysql.com <>2005-10-14 13:35:36 +0200
commit58f2a6aa6434f2ec11cf1220b41ce4a94964a46c (patch)
tree3f14c5455f8f72bf7af98cfd7b9361e9c2cb0ec3
parentdcb347bf8b8556069532524c1a345df8136f7148 (diff)
downloadmariadb-git-58f2a6aa6434f2ec11cf1220b41ce4a94964a46c.tar.gz
Change the "Password" column type for the Perl suite running the tests. bug#14023
-rw-r--r--mysql-test/lib/init_db.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/init_db.sql b/mysql-test/lib/init_db.sql
index b366a429ab2..fd7b035e038 100644
--- a/mysql-test/lib/init_db.sql
+++ b/mysql-test/lib/init_db.sql
@@ -62,7 +62,7 @@ comment='Host privileges; Merged with database privileges';
CREATE TABLE user (
Host char(60) binary DEFAULT '' NOT NULL,
User char(16) binary DEFAULT '' NOT NULL,
- Password binary(41) DEFAULT '' NOT NULL,
+ Password char(41) character set latin1 collate latin1_bin DEFAULT '' NOT NULL,
Select_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,
Insert_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,
Update_priv enum('N','Y') COLLATE utf8_general_ci DEFAULT 'N' NOT NULL,