From: Steve Singer Date: Sun, 9 Oct 2022 19:51:25 +0000 (-0400) Subject: Fix test SQL X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=453f25a743ec353f5ca5d7d85a11524879554db5;p=slony1-engine.git Fix test SQL --- diff --git a/clustertest/disorder/tests/DropPath.js b/clustertest/disorder/tests/DropPath.js index b52b4d3a..147b007e 100644 --- a/clustertest/disorder/tests/DropPath.js +++ b/clustertest/disorder/tests/DropPath.js @@ -101,7 +101,7 @@ DropPath.prototype.verifyPath=function(server,client,expectPath) { var rs=undefined; try { rs = stat.executeQuery("SELECT COUNT(*) FROM _" + this.getClusterName() - + '.sl_path where pa_client=' + client + 'AND pa_server=' + server); + + '.sl_path where pa_client=' + client + ' AND pa_server=' + server); rs.next(); var count = rs.getInt(1); this.testResults.assertCheck('no path exists between ' + client + ' and ' + server @@ -114,4 +114,4 @@ DropPath.prototype.verifyPath=function(server,client,expectPath) { stat.close(); connection.close(); } -} \ No newline at end of file +}