runwisc.sh
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # $Header: /usr/local/cvsroot/pgsql/src/test/bench/runwisc.sh,v 1.4 1999/05/23 18:53:30 momjian Exp $
  3. # Note that in our published benchmark numbers, we executed the command in the
  4. # following fashion:
  5. #
  6. # time $POSTGRES -texecutor -tplanner -f hashjoin -Q bench
  7. #
  8. if [ ! -d $1 ]; then
  9.         echo " you must specify a valid data directory "
  10.         exit
  11. fi
  12. if [ -d ./obj ]; then
  13. cd ./obj
  14. fi
  15. echo =============== vacuuming benchmark database... =================
  16. echo "vacuum" | postgres -D${1} -Q bench > /dev/null
  17. echo =============== running benchmark... =================
  18. time postgres -D${1} -texecutor -tplanner -Q bench < bench.sql