diff options
author | antony@anubis.xiphis.org <> | 2007-07-01 20:56:47 -0700 |
---|---|---|
committer | antony@anubis.xiphis.org <> | 2007-07-01 20:56:47 -0700 |
commit | 673a8708d1fea6ff0e90486c097921a7bfefbe91 (patch) | |
tree | 6c799762f4eee5f91022c1ef1ecf42df0e8867a7 /mysql-test/t/partition_grant.test | |
parent | 2efac2246325f48efdfe08076c68774bab1c2616 (diff) | |
parent | 754f66cf56bed2004e347e46084cdb7126cfbf99 (diff) | |
download | mariadb-git-673a8708d1fea6ff0e90486c097921a7bfefbe91.tar.gz |
Merge anubis.xiphis.org:/usr/home/antony/work/mysql-5.1-engines
into anubis.xiphis.org:/usr/home/antony/work/mysql-5.1-merge
Diffstat (limited to 'mysql-test/t/partition_grant.test')
-rw-r--r-- | mysql-test/t/partition_grant.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/partition_grant.test b/mysql-test/t/partition_grant.test index 0d30ad01c7a..cf944e507fd 100644 --- a/mysql-test/t/partition_grant.test +++ b/mysql-test/t/partition_grant.test @@ -63,13 +63,13 @@ insert into t1 values (1); grant alter on mysqltest_1.* to mysqltest_1@localhost; connect (conn4,localhost,mysqltest_1,,mysqltest_1); connection conn4; ---error 1514 +--error ER_NO_PARTITION_FOR_GIVEN_VALUE alter table t1 partition by list (s1) (partition p1 values in (2)); connection default; grant select, alter on mysqltest_1.* to mysqltest_1@localhost; disconnect conn4; connect (conn5,localhost,mysqltest_1,,mysqltest_1); ---error 1514 +--error ER_NO_PARTITION_FOR_GIVEN_VALUE alter table t1 partition by list (s1) (partition p1 values in (2)); disconnect conn5; connection default; |