blob: 5521cadde2b2937eb3510fe2eefd7cb5ea31d87e [file] [log] [blame]
#include <postgres.h>
#include <fmgr.h>
PG_FUNCTION_INFO_V1(noop);
Datum
noop(PG_FUNCTION_ARGS) {
(void) fcinfo;
PG_RETURN_VOID();
}