mirror of https://github.com/citusdata/citus.git
fixup
parent
06f1c96975
commit
a05e75a6d1
3
Makefile
3
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)
|
||||
|
|
6
cstore.c
6
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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue