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)
|
||||||
|
|
|
@ -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