aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2021-03-30 19:46:22 -0400
committerBruce Momjian <bruce@momjian.us>2021-03-30 19:46:31 -0400
commit9ee7d533dacf8594057ced2d016250f09056c284 (patch)
tree081119c40179df59fff2267ff5dabe3734a63a00
parent7bebd0d00998a28449d83376f4bcdeec65d5eea6 (diff)
downloadpostgresql-9ee7d533dacf8594057ced2d016250f09056c284.tar.gz
postgresql-9ee7d533dacf8594057ced2d016250f09056c284.zip
adjust dblink regression expected output for commit 5da9868ed9
Seems the -1/singular output is used in the dblink regression tests. Reported-by: Álvaro Herrera Discussion: https://postgr.es/m/20210330231506.GA10666@alvherre.pgsql
-rw-r--r--contrib/dblink/expected/dblink.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/dblink/expected/dblink.out b/contrib/dblink/expected/dblink.out
index 6516d4f1313..33ceaddd89c 100644
--- a/contrib/dblink/expected/dblink.out
+++ b/contrib/dblink/expected/dblink.out
@@ -1099,9 +1099,9 @@ SELECT *
FROM dblink('myconn',
'SELECT * FROM (VALUES (''-1 2:03:04'')) i')
AS i(i interval);
- i
--------------------
- -1 days -02:03:04
+ i
+------------------
+ -1 day -02:03:04
(1 row)
-- Try swapping to another format to ensure the GUCs are tracked