From: Peter Eisentraut Date: Thu, 11 Aug 2022 08:35:39 +0000 (+0200) Subject: Add missing space in _outA_Const() output X-Git-Tag: REL_16_BETA1~2005 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4e6dcbb6ae77d9f6f20072d19e433cab8329ea9b;p=thirdparty%2Fpostgresql.git Add missing space in _outA_Const() output Mistake introduced by 639a86e36aaecb84faaf941dcd0b183ba0aba9e9. --- diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index a96f2ee8c64..ab4ad1809db 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -660,7 +660,7 @@ _outA_Const(StringInfo str, const A_Const *node) WRITE_NODE_TYPE("A_CONST"); if (node->isnull) - appendStringInfoString(str, "NULL"); + appendStringInfoString(str, " NULL"); else { appendStringInfoString(str, " :val ");