mirror of https://github.com/citusdata/citus.git
fix am_alter test
parent
d352cd07dd
commit
b9f2b410b5
4
Makefile
4
Makefile
|
@ -48,12 +48,12 @@ ifeq ($(USE_FDW),yes)
|
||||||
fdw_copyto fdw_alter fdw_truncate fdw_clean
|
fdw_copyto fdw_alter fdw_truncate fdw_clean
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# disabled tests: am_block_filtering am_analyze am_alter
|
# disabled tests: am_block_filtering am_analyze
|
||||||
ifeq ($(USE_TABLEAM),yes)
|
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_drop am_insert am_copyto am_truncate am_clean
|
am_drop am_insert am_copyto am_alter am_truncate am_clean
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(enable_coverage),yes)
|
ifeq ($(enable_coverage),yes)
|
||||||
|
|
|
@ -457,7 +457,8 @@ static bool
|
||||||
cstore_scan_analyze_next_block(TableScanDesc scan, BlockNumber blockno,
|
cstore_scan_analyze_next_block(TableScanDesc scan, BlockNumber blockno,
|
||||||
BufferAccessStrategy bstrategy)
|
BufferAccessStrategy bstrategy)
|
||||||
{
|
{
|
||||||
elog(ERROR, "cstore_scan_analyze_next_block not implemented");
|
/* TODO */
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -466,7 +467,8 @@ cstore_scan_analyze_next_tuple(TableScanDesc scan, TransactionId OldestXmin,
|
||||||
double *liverows, double *deadrows,
|
double *liverows, double *deadrows,
|
||||||
TupleTableSlot *slot)
|
TupleTableSlot *slot)
|
||||||
{
|
{
|
||||||
elog(ERROR, "cstore_scan_analyze_next_tuple not implemented");
|
/* TODO */
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue