merge-cstore-pykello
Jeff Davis 2020-09-18 11:59:28 -07:00
parent 06f1c96975
commit a05e75a6d1
3 changed files with 6 additions and 5 deletions

View File

@ -53,8 +53,7 @@ ifeq ($(USE_TABLEAM),yes)
PG_CFLAGS += -DUSE_TABLEAM PG_CFLAGS += -DUSE_TABLEAM
OBJS += cstore_tableam.o OBJS += cstore_tableam.o
REGRESS += am_create am_load am_query am_data_types am_functions \ REGRESS += am_create am_load am_query am_data_types am_functions \
am_block_filtering am_drop am_insert am_copyto am_alter \ am_drop am_insert am_copyto am_alter am_truncate am_clean
am_truncate am_clean
endif endif
ifeq ($(enable_coverage),yes) ifeq ($(enable_coverage),yes)

View File

@ -33,9 +33,9 @@ int cstore_block_row_count = DEFAULT_BLOCK_ROW_COUNT;
static const struct config_enum_entry cstore_compression_options[] = static const struct config_enum_entry cstore_compression_options[] =
{ {
{"none", COMPRESSION_NONE, false}, { "none", COMPRESSION_NONE, false },
{"pglz", COMPRESSION_PG_LZ, false}, { "pglz", COMPRESSION_PG_LZ, false },
{NULL, 0, false} { NULL, 0, false }
}; };
void void

View File

@ -56,6 +56,7 @@ CStoreTableAMGetOptions(void)
return cstoreOptions; return cstoreOptions;
} }
static MemoryContext static MemoryContext
CStoreMemoryContext(void) CStoreMemoryContext(void)
{ {
@ -67,6 +68,7 @@ CStoreMemoryContext(void)
return CStoreContext; return CStoreContext;
} }
static void static void
cstore_init_write_state(Relation relation) cstore_init_write_state(Relation relation)
{ {