mirror of https://github.com/citusdata/citus.git
20 lines
420 B
C
20 lines
420 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* cstore_customscan.h
|
|
*
|
|
* Forward declarations of functions to hookup the custom scan feature of
|
|
* cstore.
|
|
*
|
|
* $Id$
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef COLUMNAR_CUSTOMSCAN_H
|
|
#define COLUMNAR_CUSTOMSCAN_H
|
|
|
|
void columnar_customscan_init(void);
|
|
|
|
|
|
#endif /* COLUMNAR_CUSTOMSCAN_H */
|