diff options
author | unknown <kent@mysql.com> | 2005-10-01 17:21:09 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-10-01 17:21:09 +0200 |
commit | c96cf154a879e3deb4e8cfc108355b97e4f5e7d0 (patch) | |
tree | f0a0734a6345526436d8657cad93a1d03f309dfd /mysql-test | |
parent | 93875e07027720c57f678df2bbfbdf70849ca816 (diff) | |
download | mariadb-git-c96cf154a879e3deb4e8cfc108355b97e4f5e7d0.tar.gz |
init_db.sql:
mysql.user.password doesn't need utf8
mysql-test/lib/init_db.sql:
mysql.user.password doesn't need utf8
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/lib/init_db.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/init_db.sql b/mysql-test/lib/init_db.sql index 37353e5974f..b366a429ab2 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 char(41) binary DEFAULT '' NOT NULL, + Password binary(41) 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, |