summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_grant.result
diff options
context:
space:
mode:
authorunknown <kostja@bodhi.local>2006-08-14 19:05:35 +0400
committerunknown <kostja@bodhi.local>2006-08-14 19:05:35 +0400
commite7f7263d489c1c4aa14bff0b7d12903bd40d7310 (patch)
treeeb3e44c5ef8f952d1ee8b45a856994dadd949032 /mysql-test/r/partition_grant.result
parent021cea21fdbfe50db647fe2ab3606f1e075c0654 (diff)
downloadmariadb-git-e7f7263d489c1c4aa14bff0b7d12903bd40d7310.tar.gz
Fix a test suite failure.
mysql-test/r/partition_grant.result: Update results (cleanup pon top of partition_grant.test)
Diffstat (limited to 'mysql-test/r/partition_grant.result')
-rw-r--r--mysql-test/r/partition_grant.result2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/partition_grant.result b/mysql-test/r/partition_grant.result
index da0e00c9858..e88427e5396 100644
--- a/mysql-test/r/partition_grant.result
+++ b/mysql-test/r/partition_grant.result
@@ -3,6 +3,8 @@ create schema mysqltest_1;
use mysqltest_1;
create table t1 (a int) partition by list (a) (partition p1 values in (1), partition p2 values in (2), partition p3 values in (3));
insert into t1 values (1),(2);
+grant usage on *.* to mysqltest_1@localhost;
+revoke all privileges on *.* from mysqltest_1@localhost;
grant select,alter on mysqltest_1.* to mysqltest_1@localhost;
show grants for current_user;
Grants for mysqltest_1@localhost