summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2006-04-24 13:51:21 +0200
committerunknown <msvensson@neptunus.(none)>2006-04-24 13:51:21 +0200
commit008da9b950f534fde0e7e231ccc91382223f8f8f (patch)
treec1bfe1ceafc7426b439713b401b0c34fb9afc7d2
parentd0711c7caab514cc438d0c6939249082807a3896 (diff)
downloadmariadb-git-008da9b950f534fde0e7e231ccc91382223f8f8f.tar.gz
Test it it works better to set no read access for a file by using 000 instead of -r
Looks like the trigger.test works that way mysql-test/t/information_schema.test: Test it it works better to set no read access for a file by using 000 instead of -r
-rw-r--r--mysql-test/t/information_schema.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/information_schema.test b/mysql-test/t/information_schema.test
index 90b0fd95eee..770722f7707 100644
--- a/mysql-test/t/information_schema.test
+++ b/mysql-test/t/information_schema.test
@@ -798,9 +798,9 @@ DROP FUNCTION func2;
#
create database mysqltest;
create table mysqltest.t1(a int);
---exec chmod -r $MYSQLTEST_VARDIR/master-data/mysqltest
+--exec chmod 000 $MYSQLTEST_VARDIR/master-data/mysqltest
select table_schema from information_schema.tables where table_schema='mysqltest';
---exec chmod +r $MYSQLTEST_VARDIR/master-data/mysqltest
+--exec chmod 600 $MYSQLTEST_VARDIR/master-data/mysqltest
drop database mysqltest;
#