From a842c45729d71755e6ec94eb31563d80701092cc Mon Sep 17 00:00:00 2001 From: Yanwen Jin Date: Tue, 22 Feb 2022 10:28:59 -0800 Subject: [PATCH] Add comment when loading columnar.so in citus --- src/backend/distributed/shared_library_init.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/backend/distributed/shared_library_init.c b/src/backend/distributed/shared_library_init.c index abc11cf39..ea0b9f2db 100644 --- a/src/backend/distributed/shared_library_init.c +++ b/src/backend/distributed/shared_library_init.c @@ -347,7 +347,11 @@ _PG_init(void) DoInitialCleanup(); } - + /* + * For convenience and backwards compatibility, we avoid users having to add both + * citus and columnar to shared_preload_libraries by loading columnar.so as part of + * loading citus.so. + */ load_file("columnar.so", false); }