Commit 2138c701 authored by Tom Lane's avatar Tom Lane

Add missing outfuncs.c support for struct InhRelation.

This is needed to support debug_print_parse, per report from Jon Nelson.
Cursory testing via the regression tests suggests we aren't missing
anything else.
parent 52e2c122
......@@ -1942,6 +1942,15 @@ _outDefElem(StringInfo str, DefElem *node)
WRITE_ENUM_FIELD(defaction, DefElemAction);
}
static void
_outInhRelation(StringInfo str, InhRelation *node)
{
WRITE_NODE_TYPE("INHRELATION");
WRITE_NODE_FIELD(relation);
WRITE_UINT_FIELD(options);
}
static void
_outLockingClause(StringInfo str, LockingClause *node)
{
......@@ -2963,6 +2972,9 @@ _outNode(StringInfo str, void *obj)
case T_DefElem:
_outDefElem(str, obj);
break;
case T_InhRelation:
_outInhRelation(str, obj);
break;
case T_LockingClause:
_outLockingClause(str, obj);
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment