From 8bfbad4db8801e625d3692066404bbd907fbf720 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Thu, 19 Apr 2018 14:17:37 +0900 Subject: [PATCH] Fix bug when USE_REPLICATION_SLOT is not used. --- src/test/pgpool_setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/pgpool_setup b/src/test/pgpool_setup index 94d5cbd83..258807cec 100755 --- a/src/test/pgpool_setup +++ b/src/test/pgpool_setup @@ -664,7 +664,7 @@ case $MODE in esac # If USE_REPLICATION_SLOT is provided as an environment variable, turn on -s -if [ $USE_REPLICATION_SLOT = "true" ];then +if [ a$USE_REPLICATION_SLOT = a"true" ];then USE_SLOT="true" fi #------------------------------------------- -- 2.39.5