summaryrefslogtreecommitdiff
path: root/mysql-test/r/multi_update.result
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2004-05-28 21:31:51 +0300
committerunknown <bell@sanja.is.com.ua>2004-05-28 21:31:51 +0300
commitbfaaee5343737f5899b88ebcd341374c9a67535d (patch)
treea71db9259836ae08f70ab4ec5e0326555fef4475 /mysql-test/r/multi_update.result
parentc2f6dff9f4abb3072e81cfe8eb6ad2e41475ad18 (diff)
downloadmariadb-git-bfaaee5343737f5899b88ebcd341374c9a67535d.tar.gz
if exists should not be used inside test
removed influence of some tests on other tests mysql-test/r/multi_update.result: removed influence on other tests mysql-test/r/subselect.result: if exists should not be used inside test mysql-test/t/multi_update.test: removed influence on other tests mysql-test/t/subselect.test: if exists should not be used inside test mysql-test/t/system_mysql_db_fix.test: removed influence on other tests
Diffstat (limited to 'mysql-test/r/multi_update.result')
-rw-r--r--mysql-test/r/multi_update.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/multi_update.result b/mysql-test/r/multi_update.result
index 2b312a86289..d8c70625e35 100644
--- a/mysql-test/r/multi_update.result
+++ b/mysql-test/r/multi_update.result
@@ -446,6 +446,7 @@ grant update on mysqltest.t1 to mysqltest_1@localhost;
update t1, t2 set t1.b=1 where t1.a=t2.a;
update t1, t2 set t1.b=(select t3.b from t3 where t1.a=t3.a) where t1.a=t2.a;
revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
+revoke all privileges on mysqltest.* from mysqltest_1@localhost;
delete from mysql.user where user='mysqltest_1';
drop database mysqltest;
create table t1 (a int, primary key (a));