diff options
| author | Peter Eisentraut | 2021-07-21 08:24:06 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2021-07-21 08:24:06 +0000 |
| commit | 31360381f0a5ff5193c3631e6076442352906f59 (patch) | |
| tree | d75d914d42d3ed91fa55932e073967b1340d5fbc /src/backend/nodes/outfuncs.c | |
| parent | 3d25b4ea6e2c93c60566c1185d4ee79a6285089a (diff) | |
Rename some node support functions for consistency
Some node function names didn't match their node type names exactly.
Fix those for consistency.
Discussion: https://www.postgresql.org/message-id/flat/[email protected]
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
| -rw-r--r-- | src/backend/nodes/outfuncs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index c9232d83c29..48202d22320 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -3338,7 +3338,7 @@ _outTableSampleClause(StringInfo str, const TableSampleClause *node) } static void -_outAExpr(StringInfo str, const A_Expr *node) +_outA_Expr(StringInfo str, const A_Expr *node) { WRITE_NODE_TYPE("AEXPR"); @@ -3486,7 +3486,7 @@ _outRawStmt(StringInfo str, const RawStmt *node) } static void -_outAConst(StringInfo str, const A_Const *node) +_outA_Const(StringInfo str, const A_Const *node) { WRITE_NODE_TYPE("A_CONST"); @@ -4430,7 +4430,7 @@ outNode(StringInfo str, const void *obj) _outTableSampleClause(str, obj); break; case T_A_Expr: - _outAExpr(str, obj); + _outA_Expr(str, obj); break; case T_ColumnRef: _outColumnRef(str, obj); @@ -4442,7 +4442,7 @@ outNode(StringInfo str, const void *obj) _outRawStmt(str, obj); break; case T_A_Const: - _outAConst(str, obj); + _outA_Const(str, obj); break; case T_A_Star: _outA_Star(str, obj); |
