mirror of https://github.com/citusdata/citus.git
20 lines
438 B
C
20 lines
438 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* mod.h
|
|
*
|
|
* Type and function declarations for columnar
|
|
*
|
|
* Copyright (c) Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef MOD_H
|
|
#define MOD_H
|
|
|
|
/* Function declarations for extension loading and unloading */
|
|
extern void columnar_init(void);
|
|
extern void columnar_fini(void);
|
|
|
|
#endif /* MOD_H */
|