-
Notifications
You must be signed in to change notification settings - Fork 0
/
chillguy.c
44 lines (41 loc) · 3.73 KB
/
chillguy.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "postgres.h"
#include "fmgr.h"
#include "utils/builtins.h"
PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(chillguy);
Datum
chillguy(PG_FUNCTION_ARGS)
{
// Correctly convert string to PostgreSQL text type
PG_RETURN_TEXT_P(cstring_to_text(". . . . . .. . .\n"
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++++++++++-:...:..:++++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++++++++++-@=@ @-@.++++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++++++=-...-.@.+:*.++++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++=-. .::..#@@*.@.@@.=++++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++=. . #@@@@*@@@.@@@@.:@:=++++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++: @@@@@@=..:-:: @.+*@.:--#:++++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++.#@@@@@@@.+++++::.-..:++:@ +++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++.%@@@@@@@.++++++++++++==.@ +++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++.:@@@@@@@.+++++++++=-+*+.@ +++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++= .@@@@@*.+++++=:...@=*+-@.++++++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++=. @%..---:++=@@@*+==:-::++++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++: .-=.@:::::%@.::=@@@=-=++++++++++++++++++++++++++++++++++++++\n"
".++++++++++++++++++++++++++++++++++++++++- @:@@@@%@@@@@. @@=++++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++++++++++:@@ . @@. %-:+++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++++++++++. @ .:=======.=%-- @.+++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++++++++++:@@ . . @ = .@.+++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++++++++++-.@@@@@@@@@@@@@ .@:-+++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++-.% .@@@+==. @@+@:++++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++++++++++++:@ . % :::::.=@:++++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++++++++++++--@.%-.@....:-.#@-++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++++:@.--.:% #=. #=:++++++++++++++++++++++++++++++++++++++\n"
"++++++++++++++++++++++++++++++++++++++++++=:+ . @.@@@@@@@:++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++-+@@@@@@: - +%.++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++:@ @###@@@@@%##-++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++:@@#+..%@ @#@--++++++++++++++++++++++++++++++++++++++\n"
"+++++++++++++++++++++++++++++++++++++++++=-=+##+::@@@@+@+.:=++++++++++++++++++++++++++++++++++++++\n"
". . . . . . \n"
));
}