mirror of https://github.com/citusdata/citus.git
16 lines
515 B
C
16 lines
515 B
C
#include "postgres.h"
|
|
#include "fmgr.h"
|
|
#include "access/tableam.h"
|
|
#include "access/skey.h"
|
|
#include "nodes/bitmapset.h"
|
|
|
|
const TableAmRoutine * GetCstoreTableAmRoutine(void);
|
|
extern void cstore_tableam_init(void);
|
|
extern void cstore_tableam_finish(void);
|
|
|
|
extern TableScanDesc cstore_beginscan_extended(Relation relation, Snapshot snapshot,
|
|
int nkeys, ScanKey key,
|
|
ParallelTableScanDesc parallel_scan,
|
|
uint32 flags, Bitmapset *attr_needed,
|
|
List *scanQual);
|