diff options
author | Andrew Dunstan | 2007-08-19 01:41:25 +0000 |
---|---|---|
committer | Andrew Dunstan | 2007-08-19 01:41:25 +0000 |
commit | fd801f4faa8e0f00bc314b16549e3d8e8aa1b653 (patch) | |
tree | 246f025168f197ccd52ee322a2418ceee0cd0f78 /src/test/bench | |
parent | e53a548794e7d79ab7466d2045db1049a63c0ee7 (diff) |
Provide for logfiles in machine readable CSV format. In consequence, rename
redirect_stderr to logging_collector.
Original patch from Arul Shaji, subsequently modified by Greg Smith, and then
heavily modified by me.
Diffstat (limited to 'src/test/bench')
-rwxr-xr-x | src/test/bench/runwisc.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/bench/runwisc.sh b/src/test/bench/runwisc.sh index 4a2e237bd7a..0012958b481 100755 --- a/src/test/bench/runwisc.sh +++ b/src/test/bench/runwisc.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $PostgreSQL: pgsql/src/test/bench/runwisc.sh,v 1.9 2007/08/01 22:24:32 momjian Exp $ +# $PostgreSQL: pgsql/src/test/bench/runwisc.sh,v 1.10 2007/08/19 01:41:25 adunstan Exp $ if [ ! -d $1 ]; then echo " you must specify a valid data directory " >&2 @@ -14,4 +14,4 @@ echo =============== vacuuming benchmark database... ================= >&2 echo "vacuum" | postgres -D"$1" bench > /dev/null echo =============== running benchmark... ================= >&2 -time postgres -D"$1" -texecutor -tplanner -c log_min_messages=log -c log_destination=stderr -c redirect_stderr=off bench < bench.sql 2>&1 +time postgres -D"$1" -texecutor -tplanner -c log_min_messages=log -c log_destination=stderr -c start_log_collector=off bench < bench.sql 2>&1 |