diff options
-rw-r--r-- | src/bin/psql/t/020_cancel.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/t/020_cancel.pl b/src/bin/psql/t/020_cancel.pl index b3edaaf35d0..0ca8e1743db 100644 --- a/src/bin/psql/t/020_cancel.pl +++ b/src/bin/psql/t/020_cancel.pl @@ -53,7 +53,7 @@ SKIP: { # Send sleep command and wait until the server has registered it $stdin = "select pg_sleep(180);\n"; pump $h while length $stdin; - $node->poll_query_until('postgres', q{SELECT (SELECT count(*) FROM pg_stat_activity WHERE query ~ 'pg_sleep') > 0;}) + $node->poll_query_until('postgres', q{SELECT (SELECT count(*) FROM pg_stat_activity WHERE query ~ '^select pg_sleep') > 0;}) or die "timed out"; # Send cancel request |