]> Untitled Git - articles.git/blob
34e079f71178b85a8735fce3307561baed8ed259
[articles.git] /
1 #include "postgres.h"
2 #include "fmgr.h"
3 #include "utils/builtins.h"
4
5 PG_FUNCTION_INFO_V1(hello_world);
6
7 Datum
8 hello_world(PG_FUNCTION_ARGS)
9 {
10         char message[] = "Hello, World!";
11         Datum datum;
12
13         datum = CStringGetTextDatum(message);
14
15         PG_RETURN_TEXT_P(datum);
16 }
17