Add missing space in _outA_Const() output

Mistake introduced by 639a86e36a.
This commit is contained in:
Peter Eisentraut 2022-08-11 10:35:39 +02:00
parent 7f13ac8123
commit 4e6dcbb6ae
1 changed files with 1 additions and 1 deletions

View File

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