diff options
| author | Tom Lane | 2022-07-09 19:10:15 +0000 |
|---|---|---|
| committer | Tom Lane | 2022-07-09 19:10:15 +0000 |
| commit | 3cd0ac987819280eb8dd3e0997f0294b8bc6355a (patch) | |
| tree | adcb32ec90bca7d80e16bbd4e2cbf2d4242d4a85 /src/backend/nodes/outfuncs.c | |
| parent | 8c73c11a0d39049de2c1f400d8765a0eb21f5228 (diff) | |
Doc: rearrange high-level commentary about node support coverage.
copyfuncs.c and friends no longer seem like great places to put
high-level remarks about what's covered and what isn't. Move that
material to backend/nodes/README and other more-prominent places.
Add back (versions of) some remarks that disappeared in 2be87f092.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
| -rw-r--r-- | src/backend/nodes/outfuncs.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index 9e70bbb4d69..4d776e7b51b 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -10,19 +10,6 @@ * IDENTIFICATION * src/backend/nodes/outfuncs.c * - * NOTES - * Every node type that can appear in stored rules' parsetrees *must* - * have an output function defined here (as well as an input function - * in readfuncs.c). In addition, plan nodes should have input and - * output functions so that they can be sent to parallel workers. - * - * For use in debugging, we also provide output functions for nodes - * that appear in raw parsetrees and planner Paths. These node types - * need not have input functions. Output support for raw parsetrees - * is somewhat incomplete, too; in particular, utility statements are - * almost entirely unsupported. We try to support everything that can - * appear in a raw SELECT, though. - * *------------------------------------------------------------------------- */ #include "postgres.h" |
