diff options
author | unknown <bar@mysql.com> | 2005-11-28 17:06:57 +0400 |
---|---|---|
committer | unknown <bar@mysql.com> | 2005-11-28 17:06:57 +0400 |
commit | 12de238b092c1d1d61b0707050e9fca841bd7243 (patch) | |
tree | ccb12b7d498beceaad2db57d2179777957ebc1b3 | |
parent | 5edc1d5d973e026d394578df42686f3b7deafbd1 (diff) | |
download | mariadb-git-12de238b092c1d1d61b0707050e9fca841bd7243.tar.gz |
grant.result:
After merge fix.
mysql-test/r/grant.result:
After merge fix.
-rw-r--r-- | mysql-test/r/grant.result | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/r/grant.result b/mysql-test/r/grant.result index a9f90e24556..448847bc919 100644 --- a/mysql-test/r/grant.result +++ b/mysql-test/r/grant.result @@ -594,3 +594,24 @@ flush privileges; set @user123="non-existent"; select * from mysql.db where user=@user123; Host Db User Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Grant_priv References_priv Index_priv Alter_priv Create_tmp_table_priv Lock_tables_priv Create_view_priv Show_view_priv Create_routine_priv Alter_routine_priv Execute_priv +set names koi8r; +create database ÂÄ; +grant select on ÂÄ.* to root@localhost; +select hex(Db) from mysql.db where Db='ÂÄ'; +hex(Db) +D0B1D0B4 +show grants for root@localhost; +Grants for root@localhost +GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION +GRANT SELECT ON `ÂÄ`.* TO 'root'@'localhost' +flush privileges; +show grants for root@localhost; +Grants for root@localhost +GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION +GRANT SELECT ON `ÂÄ`.* TO 'root'@'localhost' +drop database ÂÄ; +revoke all privileges on ÂÄ.* from root@localhost; +show grants for root@localhost; +Grants for root@localhost +GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION +set names latin1; |