aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/t/001_basic.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/t/001_basic.pl b/src/bin/psql/t/001_basic.pl
index 5398a1dbf3d..89aeec46e55 100644
--- a/src/bin/psql/t/001_basic.pl
+++ b/src/bin/psql/t/001_basic.pl
@@ -370,11 +370,11 @@ psql_fails_like(
psql_like(
$node,
- q{with x as (
+ sprintf(q{with x as (
select now()-backend_start AS howlong
from pg_stat_activity
where pid = pg_backend_pid()
- ) select 123 from x where howlong < '2 seconds' \watch i=0.5 m=2},
+ ) select 123 from x where howlong < '2 seconds' \watch i=%g m=2}, 0.5),
qr/^123$/,
'\watch, 2 minimum rows');