summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorPeter Eisentraut2023-08-28 04:18:39 +0000
committerPeter Eisentraut2023-08-28 04:20:56 +0000
commit9a0ddc39c64b8dddddf4f58eb137f53bf94eb098 (patch)
treeadc42a67efa032ee883a666f841e3864e10cf3a2 /src/include
parentd6d1430f404386162831bc32906ad174b2007776 (diff)
Format list of catalog files in makefile vertically
This makes it easier to compare the lists visually with the corresponding meson lists. In passing, copy over some relevant comments from the makefiles to meson.build. Reviewed-by: Andres Freund <andres@anarazel.de> Reviewed-by: Alvaro Herrera <alvherre@alvh.no-ip.org> Discussion: https://www.postgresql.org/message-id/flat/a306be82-ee71-4554-d499-49a45a654396%40eisentraut.org
Diffstat (limited to 'src/include')
-rw-r--r--src/include/catalog/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/catalog/meson.build b/src/include/catalog/meson.build
index c3fd05d0279..dcb3c5f7666 100644
--- a/src/include/catalog/meson.build
+++ b/src/include/catalog/meson.build
@@ -1,5 +1,9 @@
# Copyright (c) 2022-2023, PostgreSQL Global Development Group
+# Note: the order of this list determines the order in which the catalog
+# header files are assembled into postgres.bki. BKI_BOOTSTRAP catalogs
+# must appear first, and pg_statistic before pg_statistic_ext_data, and
+# there are reputedly other, undocumented ordering dependencies.
catalog_headers = [
'pg_proc.h',
'pg_type.h',
@@ -67,6 +71,7 @@ catalog_headers = [
'pg_subscription_rel.h',
]
+# The .dat files we need can just be listed alphabetically.
bki_data = [
'pg_aggregate.dat',
'pg_am.dat',