diff options
author | unknown <bell@sanja.is.com.ua> | 2005-07-05 13:36:36 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2005-07-05 13:36:36 +0300 |
commit | 200f03fdd4b5a6272789c18a1250f1d790b9e177 (patch) | |
tree | 19204b6be884c68d59c350d709658364aa6ca45c /mysql-test/t/view_grant.test | |
parent | bf851ae2a0d3fc1b45a81739046ab05d7285b666 (diff) | |
download | mariadb-git-200f03fdd4b5a6272789c18a1250f1d790b9e177.tar.gz |
added processing of view grants to table grants (BUG#9795)
mysql-test/r/grant.result:
test of new table privileges
mysql-test/r/system_mysql_db.result:
added new table priveleges
mysql-test/r/view_grant.result:
error changed
mysql-test/t/grant.test:
test of new table privileges
mysql-test/t/view_grant.test:
error changed
scripts/mysql_create_system_tables.sh:
add new table privileges
scripts/mysql_fix_privilege_tables.sql:
fixed system tables fix script
sql/sql_acl.h:
fixed coding/decoding new tables grants
Diffstat (limited to 'mysql-test/t/view_grant.test')
-rw-r--r-- | mysql-test/t/view_grant.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/view_grant.test b/mysql-test/t/view_grant.test index bb603b75daa..6283a1abf11 100644 --- a/mysql-test/t/view_grant.test +++ b/mysql-test/t/view_grant.test @@ -360,7 +360,7 @@ create table mysqltest.v3 (b int); grant select(b) on mysqltest.v3 to mysqltest_1@localhost; drop table mysqltest.v3; connection user1; --- error 1142 +-- error 1143 create view mysqltest.v3 as select b from mysqltest.t2; # Expression need select privileges |