From a05e75a6d11d5638fee978ebbfa8b31bb5c2a5d4 Mon Sep 17 00:00:00 2001 From: Jeff Davis Date: Fri, 18 Sep 2020 11:59:28 -0700 Subject: [PATCH] fixup --- Makefile | 3 +-- cstore.c | 6 +++--- cstore_tableam.c | 2 ++ 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 033e8d4a6..ea5a858bf 100644 --- a/Makefile +++ b/Makefile @@ -53,8 +53,7 @@ ifeq ($(USE_TABLEAM),yes) PG_CFLAGS += -DUSE_TABLEAM OBJS += cstore_tableam.o REGRESS += am_create am_load am_query am_data_types am_functions \ - am_block_filtering am_drop am_insert am_copyto am_alter \ - am_truncate am_clean + am_drop am_insert am_copyto am_alter am_truncate am_clean endif ifeq ($(enable_coverage),yes) diff --git a/cstore.c b/cstore.c index 1e8733003..3dd53dae4 100644 --- a/cstore.c +++ b/cstore.c @@ -33,9 +33,9 @@ int cstore_block_row_count = DEFAULT_BLOCK_ROW_COUNT; static const struct config_enum_entry cstore_compression_options[] = { - {"none", COMPRESSION_NONE, false}, - {"pglz", COMPRESSION_PG_LZ, false}, - {NULL, 0, false} + { "none", COMPRESSION_NONE, false }, + { "pglz", COMPRESSION_PG_LZ, false }, + { NULL, 0, false } }; void diff --git a/cstore_tableam.c b/cstore_tableam.c index 57ec2fa94..aa92f48cf 100644 --- a/cstore_tableam.c +++ b/cstore_tableam.c @@ -56,6 +56,7 @@ CStoreTableAMGetOptions(void) return cstoreOptions; } + static MemoryContext CStoreMemoryContext(void) { @@ -67,6 +68,7 @@ CStoreMemoryContext(void) return CStoreContext; } + static void cstore_init_write_state(Relation relation) {