Sha256: f20106cae4c0754197f0f0528f461db8e436018771e416a20ae387c3efbc6a3f
Contents?: true
Size: 553 Bytes
Versions: 1
Compression:
Stored size: 553 Bytes
Contents
#include "postgres.h" #include "fmgr.h" /* * You can include more files here if needed. * To use some types, you must include the * correct file here based on: * http://www.postgresql.org/docs/current/static/xfunc-c.html#XFUNC-C-TYPE-TABLE */ PG_MODULE_MAGIC; PG_FUNCTION_INFO_V1(<%= extension_name %>); Datum <%= extension_name %>(PG_FUNCTION_ARGS); Datum <%= extension_name %>(PG_FUNCTION_ARGS) { /* * This is an empty body and will return NULL * * You should remove this comment and type * cool code here! */ PG_RETURN_NULL(); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pgxn_utils-0.1.4 | lib/pgxn_utils/templates/c/src/%extension_name%.c.tt |