fix am_alter test

merge-cstore-pykello
Jeff Davis 2020-09-16 15:29:24 -07:00
parent d352cd07dd
commit b9f2b410b5
2 changed files with 6 additions and 4 deletions

View File

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

View File

@ -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;
} }