aboutsummaryrefslogtreecommitdiff
path: root/src/backend/catalog/pg_publication.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/catalog/pg_publication.c')
-rw-r--r--src/backend/catalog/pg_publication.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/catalog/pg_publication.c b/src/backend/catalog/pg_publication.c
index 2631558ff11..e2c8bcb2797 100644
--- a/src/backend/catalog/pg_publication.c
+++ b/src/backend/catalog/pg_publication.c
@@ -378,9 +378,9 @@ publication_add_relation(Oid pubid, PublicationRelInfo *pri,
check_publication_add_relation(targetrel);
/*
- * Translate column names to attnums and make sure the column list contains
- * only allowed elements (no system or generated columns etc.). Also build
- * an array of attnums, for storing in the catalog.
+ * Translate column names to attnums and make sure the column list
+ * contains only allowed elements (no system or generated columns etc.).
+ * Also build an array of attnums, for storing in the catalog.
*/
publication_translate_columns(pri->relation, pri->columns,
&natts, &attarray);
@@ -555,11 +555,11 @@ pub_collist_to_bitmapset(Bitmapset *columns, Datum pubcols, MemoryContext mcxt)
ArrayType *arr;
int nelems;
int16 *elems;
- MemoryContext oldcxt = NULL;
+ MemoryContext oldcxt = NULL;
/*
- * If an existing bitmap was provided, use it. Otherwise just use NULL
- * and build a new bitmap.
+ * If an existing bitmap was provided, use it. Otherwise just use NULL and
+ * build a new bitmap.
*/
if (columns)
result = columns;