mirror of https://github.com/citusdata/citus.git
31 lines
436 B
C
31 lines
436 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* mod.c
|
|
*
|
|
* This file contains module-level definitions.
|
|
*
|
|
* Copyright (c) 2016, Citus Data, Inc.
|
|
*
|
|
* $Id$
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "postgres.h"
|
|
|
|
#include "cstore_fdw.h"
|
|
|
|
PG_MODULE_MAGIC;
|
|
|
|
void _PG_init(void)
|
|
{
|
|
cstore_fdw_init();
|
|
}
|
|
|
|
|
|
void _PG_fini(void)
|
|
{
|
|
cstore_fdw_finish();
|
|
}
|
|
|