diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-07-11 13:38:40 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-07-11 13:38:47 -0400 |
commit | bf022d337ef096c79e6a0b51f0b42e69749ae210 (patch) | |
tree | bb6afd166420f5cc32ded34a8751d69143ba3901 /src/tools/msvc/Solution.pm | |
parent | b2d5b4c6e09b2a505ced098d2cb1e7b015bfc50d (diff) | |
download | postgresql-bf022d337ef096c79e6a0b51f0b42e69749ae210.tar.gz postgresql-bf022d337ef096c79e6a0b51f0b42e69749ae210.zip |
Rationalize order of input files for gen_node_support.pl.
Per a question from Andres Freund. While here, also make the
list of nodetag-only files easier to compare to the full list
of input files.
Discussion: https://postgr.es/m/20220710214622.haiektrjzisob6rl@awork3.anarazel.de
Diffstat (limited to 'src/tools/msvc/Solution.pm')
-rw-r--r-- | src/tools/msvc/Solution.pm | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index b8b1728df7f..a9dd6045344 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -843,29 +843,28 @@ EOF 'src/backend/nodes/node-support-stamp', 'src/backend/nodes/gen_node_support.pl')) { - # XXX duplicates src/backend/nodes/Makefile - + # XXX duplicates node_headers list in src/backend/nodes/Makefile my @node_headers = qw( nodes/nodes.h - nodes/execnodes.h - nodes/plannodes.h nodes/primnodes.h - nodes/pathnodes.h - nodes/extensible.h nodes/parsenodes.h - nodes/replnodes.h - nodes/value.h - commands/trigger.h - commands/event_trigger.h - foreign/fdwapi.h + nodes/pathnodes.h + nodes/plannodes.h + nodes/execnodes.h access/amapi.h + access/sdir.h access/tableam.h access/tsmapi.h - utils/rel.h - nodes/supportnodes.h + commands/event_trigger.h + commands/trigger.h executor/tuptable.h + foreign/fdwapi.h + nodes/extensible.h nodes/lockoptions.h - access/sdir.h + nodes/replnodes.h + nodes/supportnodes.h + nodes/value.h + utils/rel.h ); chdir('src/backend/nodes'); |