]> Untitled Git - articles.git/blob
4da02311e38351aa0a1f42ce4efe9eac9f826d71
[articles.git] /
1 #include "postgres.h"
2 #include "fmgr.h"
3
4 PG_FUNCTION_INFO_V1(warn_me);
5
6 Datum
7 warn_me(PG_FUNCTION_ARGS)
8 {
9         int32 n = PG_GETARG_INT32(0);
10         elog(WARNING, "Предупреждаю: %i", n);
11         PG_RETURN_INT32(n);
12 }
13