psql/t/001_basic: use locale-aware decimals in new test

As cd82e5c79d did.  Otherwise, the test fails in locales that use
decimal separators other than ".".
This commit is contained in:
Alvaro Herrera 2023-08-29 18:13:11 +02:00
parent db6d9891e8
commit 8421f6bce1
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE
1 changed files with 2 additions and 2 deletions

View File

@ -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');