projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
251154b
)
Adjust node serialization tag of A_Expr for consistency
author
Peter Eisentraut
<
[email protected]
>
Fri, 8 Jul 2022 09:03:45 +0000
(11:03 +0200)
committer
Peter Eisentraut
<
[email protected]
>
Fri, 8 Jul 2022 09:03:45 +0000
(11:03 +0200)
Changed from AEXPR to A_EXPR for consistency.
Discussion: https://www.postgresql.org/message-id/
2592455
.
1657140387
%40sss.pgh.pa.us
src/backend/nodes/outfuncs.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/nodes/outfuncs.c
b/src/backend/nodes/outfuncs.c
index 7dab96c1be040caadd57eb9b5b74e69517c07478..77a7a868ca3050fceeb7f09ffd961b048476b59b 100644
(file)
--- a/
src/backend/nodes/outfuncs.c
+++ b/
src/backend/nodes/outfuncs.c
@@
-3520,7
+3520,7
@@
_outTableSampleClause(StringInfo str, const TableSampleClause *node)
static void
_outA_Expr(StringInfo str, const A_Expr *node)
{
- WRITE_NODE_TYPE("AEXPR");
+ WRITE_NODE_TYPE("A
_
EXPR");
switch (node->kind)
{