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
|
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)
|
||||||
|
|
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[] =
|
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
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue