mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 08:42:38 -04:00
Add missing space in _outA_Const() output
Mistake introduced by 639a86e36a.
This commit is contained in:
parent
272248a0c1
commit
eeb1671b11
1 changed files with 1 additions and 1 deletions
|
|
@ -3685,7 +3685,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 ");
|
||||
|
|
|
|||
Loading…
Reference in a new issue