From 008da9b950f534fde0e7e231ccc91382223f8f8f Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 24 Apr 2006 13:51:21 +0200 Subject: [PATCH] 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 --- mysql-test/t/information_schema.test | 4 ++-- 1 file 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; #