From 3be5cbf3656c22454e9a6fe4ba1f9f8fe4252cbf Mon Sep 17 00:00:00 2001 From: prabatuty Date: Sun, 22 May 2011 13:49:25 +0000 Subject: [PATCH] changing max size to fit default system shm max size --- test/tools/Pagesize/test001.ksh | 4 ++-- test/tools/Pagesize/test002.ksh | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/tools/Pagesize/test001.ksh b/test/tools/Pagesize/test001.ksh index 8afaa638..b5eb1655 100755 --- a/test/tools/Pagesize/test001.ksh +++ b/test/tools/Pagesize/test001.ksh @@ -2,7 +2,7 @@ # Checking page size # Increase PAGE_SIZE 2 times of the default # Set MAX_SYS_DB_SIZE=10485760 -# Set MAX_DB_SIZE=104857600 +# Set MAX_DB_SIZE=33554432 # check all DDL Operations on bigger tables taking recordsize more than 1k # DDL (create table,create index,drop table, drop index) # @@ -21,7 +21,7 @@ echo SYS_DB_KEY=4444 >>/tmp/csql.conf echo USER_DB_KEY=6666 >>/tmp/csql.conf echo PAGE_SIZE=16384 >>/tmp/csql.conf echo MAX_SYS_DB_SIZE=10485760 >>/tmp/csql.conf -echo MAX_DB_SIZE=104857600 >>/tmp/csql.conf +echo MAX_DB_SIZE=33554432 >>/tmp/csql.conf export CSQL_CONFIG_FILE=/tmp/csql.conf $CSQL_INSTALL_ROOT/bin/csqlserver >/dev/null 2>&1 & diff --git a/test/tools/Pagesize/test002.ksh b/test/tools/Pagesize/test002.ksh index ab808f46..01dc4ad9 100755 --- a/test/tools/Pagesize/test002.ksh +++ b/test/tools/Pagesize/test002.ksh @@ -1,8 +1,8 @@ #!/bin/ksh # Checking page size # Increase PAGE_SIZE 10 times of the default (i.e 10 KB) -# Set MAX_SYS_DB_SIZE=31457280 (30 MB) -# Set MAX_DB_SIZE=314572800 (300 MB) +# Set MAX_SYS_DB_SIZE=33554432 (30 MB) +# Set MAX_DB_SIZE=33554432 (300 MB) # check all DDL Operations on bigger tables taking recordsize more than 1k # DDL (create table,create index,drop table, drop index) # @@ -20,8 +20,8 @@ cp -f $REL_PATH/csql.conf /tmp echo SYS_DB_KEY=4444 >>/tmp/csql.conf echo USER_DB_KEY=6666 >>/tmp/csql.conf echo PAGE_SIZE=81920 >>/tmp/csql.conf -echo MAX_SYS_DB_SIZE=31457280 >>/tmp/csql.conf -echo MAX_DB_SIZE=314572800 >>/tmp/csql.conf +echo MAX_SYS_DB_SIZE=33554432 >>/tmp/csql.conf +echo MAX_DB_SIZE=33554432 >>/tmp/csql.conf export CSQL_CONFIG_FILE=/tmp/csql.conf $CSQL_INSTALL_ROOT/bin/csqlserver >/dev/null 2>&1 & -- 2.11.4.GIT