1 /*-------------------------------------------------------------------------
2  *
3  * citus_readfuncs.c
4  *    Citus specific node functions
5  *
6  * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  * Portions Copyright (c) Citus Data, Inc.
9  *
10  *-------------------------------------------------------------------------
11  */
12 #include "postgres.h"
13 
14 #include "distributed/citus_nodefuncs.h"
15 
16 void
ReadUnsupportedCitusNode(READFUNC_ARGS)17 ReadUnsupportedCitusNode(READFUNC_ARGS)
18 {
19 	ereport(ERROR, (errmsg("not implemented")));
20 }
21