mirror of https://github.com/citusdata/citus.git
21 lines
570 B
C
21 lines
570 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* citus_readfuncs.c
|
|
* Citus specific node functions
|
|
*
|
|
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
* Portions Copyright (c) Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#include "postgres.h"
|
|
|
|
#include "distributed/citus_nodefuncs.h"
|
|
|
|
void
|
|
ReadUnsupportedCitusNode(READFUNC_ARGS)
|
|
{
|
|
ereport(ERROR, (errmsg("not implemented")));
|
|
}
|