From 5d80213547ffbdb16709cd718f3ddf724d85731f Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 25 Feb 2026 12:04:36 +0100 Subject: [PATCH 01/10] Add BEGIN_CATALOG_STRUCT/END_CATALOG_STRUCT see commit ecae0972523 --- src/include/catalog/pg_propgraph_element.h | 4 ++++ src/include/catalog/pg_propgraph_element_label.h | 4 ++++ src/include/catalog/pg_propgraph_label.h | 4 ++++ src/include/catalog/pg_propgraph_label_property.h | 4 ++++ src/include/catalog/pg_propgraph_property.h | 4 ++++ 5 files changed, 20 insertions(+) diff --git a/src/include/catalog/pg_propgraph_element.h b/src/include/catalog/pg_propgraph_element.h index a1c7c07013d..2f8af537691 100644 --- a/src/include/catalog/pg_propgraph_element.h +++ b/src/include/catalog/pg_propgraph_element.h @@ -25,6 +25,8 @@ * typedef struct FormData_pg_propgraph_element * ---------------- */ +BEGIN_CATALOG_STRUCT + CATALOG(pg_propgraph_element,8299,PropgraphElementRelationId) { Oid oid; @@ -86,6 +88,8 @@ CATALOG(pg_propgraph_element,8299,PropgraphElementRelationId) #endif } FormData_pg_propgraph_element; +END_CATALOG_STRUCT + /* ---------------- * Form_pg_propgraph_element corresponds to a pointer to a tuple with * the format of pg_propgraph_element relation. diff --git a/src/include/catalog/pg_propgraph_element_label.h b/src/include/catalog/pg_propgraph_element_label.h index 092fc60f47b..afd1533cadd 100644 --- a/src/include/catalog/pg_propgraph_element_label.h +++ b/src/include/catalog/pg_propgraph_element_label.h @@ -24,6 +24,8 @@ * typedef struct FormData_pg_propgraph_element_label * ---------------- */ +BEGIN_CATALOG_STRUCT + CATALOG(pg_propgraph_element_label,8305,PropgraphElementLabelRelationId) { Oid oid; @@ -35,6 +37,8 @@ CATALOG(pg_propgraph_element_label,8305,PropgraphElementLabelRelationId) Oid pgelelid BKI_LOOKUP(pg_propgraph_element); } FormData_pg_propgraph_element_label; +END_CATALOG_STRUCT + /* ---------------- * Form_pg_propgraph_element_label corresponds to a pointer to a tuple with * the format of pg_propgraph_element_label relation. diff --git a/src/include/catalog/pg_propgraph_label.h b/src/include/catalog/pg_propgraph_label.h index 54e51ed2579..5c78bfa1b19 100644 --- a/src/include/catalog/pg_propgraph_label.h +++ b/src/include/catalog/pg_propgraph_label.h @@ -24,6 +24,8 @@ * typedef struct FormData_pg_propgraph_label * ---------------- */ +BEGIN_CATALOG_STRUCT + CATALOG(pg_propgraph_label,8303,PropgraphLabelRelationId) { Oid oid; @@ -35,6 +37,8 @@ CATALOG(pg_propgraph_label,8303,PropgraphLabelRelationId) NameData pgllabel; } FormData_pg_propgraph_label; +END_CATALOG_STRUCT + /* ---------------- * Form_pg_propgraph_label corresponds to a pointer to a tuple with * the format of pg_propgraph_label relation. diff --git a/src/include/catalog/pg_propgraph_label_property.h b/src/include/catalog/pg_propgraph_label_property.h index 79d20fc353a..39d55bf68a4 100644 --- a/src/include/catalog/pg_propgraph_label_property.h +++ b/src/include/catalog/pg_propgraph_label_property.h @@ -24,6 +24,8 @@ * typedef struct FormData_pg_propgraph_label_property * ---------------- */ +BEGIN_CATALOG_STRUCT + CATALOG(pg_propgraph_label_property,8318,PropgraphLabelPropertyRelationId) { Oid oid; @@ -42,6 +44,8 @@ CATALOG(pg_propgraph_label_property,8318,PropgraphLabelPropertyRelationId) #endif } FormData_pg_propgraph_label_property; +END_CATALOG_STRUCT + /* ---------------- * Form_pg_propgraph_label_property corresponds to a pointer to a tuple with * the format of pg_propgraph_label_property relation. diff --git a/src/include/catalog/pg_propgraph_property.h b/src/include/catalog/pg_propgraph_property.h index 5f93dbfa6c5..72beafbbf15 100644 --- a/src/include/catalog/pg_propgraph_property.h +++ b/src/include/catalog/pg_propgraph_property.h @@ -24,6 +24,8 @@ * typedef struct FormData_pg_propgraph_property * ---------------- */ +BEGIN_CATALOG_STRUCT + CATALOG(pg_propgraph_property,8306,PropgraphPropertyRelationId) { Oid oid; @@ -44,6 +46,8 @@ CATALOG(pg_propgraph_property,8306,PropgraphPropertyRelationId) Oid pgpcollation BKI_LOOKUP_OPT(pg_collation); } FormData_pg_propgraph_property; +END_CATALOG_STRUCT + /* ---------------- * Form_pg_propgraph_property corresponds to a pointer to a tuple with * the format of pg_propgraph_property relation. -- 2.53.0