diff options
Diffstat (limited to 'sca-cpp/trunk/components/sqldb/standby-test')
-rwxr-xr-x | sca-cpp/trunk/components/sqldb/standby-test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sca-cpp/trunk/components/sqldb/standby-test b/sca-cpp/trunk/components/sqldb/standby-test index fbb27b5bc3..3c91e477e4 100755 --- a/sca-cpp/trunk/components/sqldb/standby-test +++ b/sca-cpp/trunk/components/sqldb/standby-test @@ -18,12 +18,13 @@ # under the License. # Setup +rm -rf tmp ../../modules/http/httpd-conf tmp/master localhost 8090 tmp/master/htdocs ../../modules/http/httpd-event-conf tmp ./pgsql-conf tmp/master 5432 ./pgsql-start tmp/master -./pgsql localhost 5432 "drop table test;" 1>/dev/null 2>&1 -./pgsql localhost 5432 "create table test(key text, value text);" 1>/dev/null 2>&1 +./pgsql localhost 6432 "drop table test;" 1>/dev/null 2>&1 +./pgsql localhost 6432 "create table test(key text, value text);" 1>/dev/null 2>&1 ../../modules/http/httpd-start tmp/master sleep 2 ./pgsql-standby-conf tmp/standby 5433 localhost 5432 8090 |