From 09a93f3cdb90bdf78b4bc2db88273cb74b6ba8cd Mon Sep 17 00:00:00 2001 From: gurkanindibay Date: Tue, 26 Dec 2023 14:54:53 +0300 Subject: [PATCH] Adds missing comments --- src/backend/distributed/commands/comment.c | 11 +++++++++++ src/include/distributed/comment.h | 10 ++++++++++ 2 files changed, 21 insertions(+) diff --git a/src/backend/distributed/commands/comment.c b/src/backend/distributed/commands/comment.c index 487f51a88..893571ca3 100644 --- a/src/backend/distributed/commands/comment.c +++ b/src/backend/distributed/commands/comment.c @@ -1,3 +1,14 @@ +/*------------------------------------------------------------------------- + * + * comment.c + * Commands to interact with the comments for all database + * object types. + * + * Copyright (c) Citus Data, Inc. + * + *------------------------------------------------------------------------- + */ + #include "postgres.h" #include "access/genam.h" diff --git a/src/include/distributed/comment.h b/src/include/distributed/comment.h index 245188313..b25a865f6 100644 --- a/src/include/distributed/comment.h +++ b/src/include/distributed/comment.h @@ -1,3 +1,13 @@ +/*------------------------------------------------------------------------- + * + * comment.h + * Declarations for comment related operations. + * + * Copyright (c) Citus Data, Inc. + * + *------------------------------------------------------------------------- + */ + #include "postgres.h" #include "nodes/parsenodes.h"