summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorAlvaro Herrera2021-12-30 22:24:26 +0000
committerAlvaro Herrera2021-12-30 22:24:26 +0000
commitc9105dd3660f4a801e6f87a1ed68189bd30576bf (patch)
treeb0edaababb4d2a501670b28e971c9c15e8d0eb14 /src/include
parentc7cf73eb7b9e7911748ebe117a7219f21e504121 (diff)
Small cleanups related to PUBLICATION framework code
Discussion: https://postgr.es/m/202112302021.ca7ihogysgh3@alvherre.pgsql
Diffstat (limited to 'src/include')
-rw-r--r--src/include/nodes/parsenodes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 4c5a8a39bf1..784164b32aa 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -3649,10 +3649,10 @@ typedef struct PublicationTable
*/
typedef enum PublicationObjSpecType
{
- PUBLICATIONOBJ_TABLE, /* Table type */
- PUBLICATIONOBJ_TABLE_IN_SCHEMA, /* Tables in schema type */
- PUBLICATIONOBJ_TABLE_IN_CUR_SCHEMA, /* Get the first element from
- * search_path */
+ PUBLICATIONOBJ_TABLE, /* A table */
+ PUBLICATIONOBJ_TABLES_IN_SCHEMA, /* All tables in schema */
+ PUBLICATIONOBJ_TABLES_IN_CUR_SCHEMA, /* All tables in first element of
+ * search_path */
PUBLICATIONOBJ_CONTINUATION /* Continuation of previous type */
} PublicationObjSpecType;