/*------------------------------------------------------------------------- * * dummy_fdw.c * "dummy" foreign-data wrapper * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * * IDENTIFICATION * $PostgreSQL: pgsql/src/backend/foreign/dummy/dummy_fdw.c,v 1.1 2008/12/19 16:25:17 petere Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" #include "fmgr.h" #include "foreign/foreign.h" PG_MODULE_MAGIC; /* * This looks like a complete waste right now, but it is useful for * testing, and will become more interesting as more parts of the * interface are implemented. */