]> Untitled Git - articles.git/blob
a126494839e31ac2aa6c3d75b0fc0ea66e009fdf
[articles.git] /
1 #include "postgres.h"
2 #include "fmgr.h"
3
4 PG_MODULE_MAGIC;
5
6 PG_FUNCTION_INFO_V1(my_get_two);
7
8 Datum
9 my_get_two(PG_FUNCTION_ARGS)
10 {
11     PG_RETURN_INT32(2);
12 }