Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit40da2c7

Browse files
committed
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 missinganything else.
1 parentfaea083 commit40da2c7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

‎src/backend/nodes/outfuncs.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1375,6 +1375,15 @@ _outDefElem(StringInfo str, DefElem *node)
13751375
WRITE_NODE_FIELD(arg);
13761376
}
13771377

1378+
staticvoid
1379+
_outInhRelation(StringInfostr,InhRelation*node)
1380+
{
1381+
WRITE_NODE_TYPE("INHRELATION");
1382+
1383+
WRITE_NODE_FIELD(relation);
1384+
WRITE_BOOL_FIELD(including_defaults);
1385+
}
1386+
13781387
staticvoid
13791388
_outLockingClause(StringInfostr,LockingClause*node)
13801389
{
@@ -2099,6 +2108,9 @@ _outNode(StringInfo str, void *obj)
20992108
caseT_DefElem:
21002109
_outDefElem(str,obj);
21012110
break;
2111+
caseT_InhRelation:
2112+
_outInhRelation(str,obj);
2113+
break;
21022114
caseT_LockingClause:
21032115
_outLockingClause(str,obj);
21042116
break;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp