forked from pgspider/griddb_fdw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
griddb_fdw--1.2.sql
167 lines (153 loc) · 6.24 KB
/
griddb_fdw--1.2.sql
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* contrib/griddb_fdw/griddb_fdw--1.2.sql */
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION griddb_fdw" to load this file. \quit
CREATE FUNCTION griddb_fdw_handler()
RETURNS fdw_handler
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT;
CREATE FUNCTION griddb_fdw_validator(text[], oid)
RETURNS void
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION griddb_fdw_version()
RETURNS pg_catalog.int4 STRICT
AS 'MODULE_PATHNAME' LANGUAGE C;
CREATE FOREIGN DATA WRAPPER griddb_fdw
HANDLER griddb_fdw_handler
VALIDATOR griddb_fdw_validator;
CREATE FUNCTION griddb_get_connections (OUT server_name text,
OUT valid boolean)
RETURNS SETOF record
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT PARALLEL RESTRICTED;
CREATE FUNCTION griddb_disconnect (text)
RETURNS bool
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT PARALLEL RESTRICTED;
CREATE FUNCTION griddb_disconnect_all ()
RETURNS bool
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT PARALLEL RESTRICTED;
CREATE FUNCTION griddb_create_or_replace_stub(func_type text, name_arg text, return_type regtype) RETURNS BOOL AS $$
DECLARE
proname_raw text := split_part(name_arg, '(', 1);
proname text := ltrim(rtrim(proname_raw));
BEGIN
IF lower(func_type) = 'aggregation' OR lower(func_type) = 'aggregate' OR lower(func_type) = 'agg' OR lower(func_type) = 'a' THEN
DECLARE
proargs_raw text := right(name_arg, length(name_arg) - length(proname_raw));
proargs text := ltrim(rtrim(proargs_raw));
proargs_types text := right(left(proargs, length(proargs) - 1), length(proargs) - 2);
aggproargs text := format('(%s, %s)', return_type, proargs_types);
BEGIN
BEGIN
EXECUTE format('
CREATE FUNCTION %s_sfunc%s RETURNS %s IMMUTABLE AS $inner$
BEGIN
RAISE EXCEPTION ''stub %s_sfunc%s is called'';
RETURN NULL;
END $inner$ LANGUAGE plpgsql;',
proname, aggproargs, return_type, proname, aggproargs);
EXCEPTION
WHEN duplicate_function THEN
RAISE DEBUG 'stub function for aggregation already exists (ignored)';
END;
BEGIN
EXECUTE format('
CREATE AGGREGATE %s
(
sfunc = %s_sfunc,
stype = %s
);', name_arg, proname, return_type);
EXCEPTION
WHEN duplicate_function THEN
RAISE DEBUG 'stub aggregation already exists (ignored)';
WHEN others THEN
RAISE EXCEPTION 'stub aggregation exception';
END;
END;
ELSEIF lower(func_type) = 'function' OR lower(func_type) = 'func' OR lower(func_type) = 'f' THEN
BEGIN
EXECUTE format('
CREATE FUNCTION %s RETURNS %s IMMUTABLE AS $inner$
BEGIN
RAISE EXCEPTION ''stub %s is called'';
RETURN NULL;
END $inner$ LANGUAGE plpgsql;',
name_arg, return_type, name_arg);
EXCEPTION
WHEN duplicate_function THEN
RAISE DEBUG 'stub already exists (ignored)';
END;
ELSEIF lower(func_type) = 'time-series-function' OR lower(func_type) = 'ts_func' OR lower(func_type) = 'tsf' THEN
BEGIN
EXECUTE format('
CREATE FUNCTION %s RETURNS %s STABLE AS $inner$
BEGIN
RAISE EXCEPTION ''stub %s is called'';
RETURN NULL;
END $inner$ LANGUAGE plpgsql;',
name_arg, return_type, name_arg);
EXCEPTION
WHEN duplicate_function THEN
RAISE DEBUG 'stub already exists (ignored)';
END;
ELSEIF lower(func_type) = 'volatile function' OR lower(func_type) = 'vfunc' OR lower(func_type) = 'vf' THEN
BEGIN
EXECUTE format('
CREATE FUNCTION %s RETURNS %s VOLATILE AS $inner$
BEGIN
RAISE EXCEPTION ''stub %s is called'';
RETURN NULL;
END $inner$ LANGUAGE plpgsql;',
name_arg, return_type, name_arg);
EXCEPTION
WHEN duplicate_function THEN
RAISE DEBUG 'stub already exists (ignored)';
END;
ELSE
RAISE EXCEPTION 'not supported function type %', func_type;
BEGIN
EXECUTE format('
CREATE FUNCTION %s_sfunc RETURNS %s AS $inner$
BEGIN
RAISE EXCEPTION ''stub %s is called'';
RETURN NULL;
END $inner$ LANGUAGE plpgsql;',
name_arg, return_type, name_arg);
EXCEPTION
WHEN duplicate_function THEN
RAISE DEBUG 'stub already exists (ignored)';
END;
END IF;
RETURN TRUE;
END
$$ LANGUAGE plpgsql;
DO $$
BEGIN
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'time_unit') THEN
CREATE TYPE time_unit as enum ('YEAR', 'QUARTER', 'MONTH', 'WEEK', 'DAY', 'HOUR', 'MINUTE', 'SECOND', 'MILLISECOND', 'MICROSECOND');
END IF;
END$$;
/* Time Operations */
SELECT griddb_create_or_replace_stub('f', 'to_timestamp_ms(bigint)', 'timestamp');
SELECT griddb_create_or_replace_stub('f', 'to_epoch_ms(timestamp)', 'bigint');
SELECT griddb_create_or_replace_stub('f', 'griddb_timestamp(text)', 'timestamp');
SELECT griddb_create_or_replace_stub('vf', 'timestampadd(time_unit, timestamp, integer)', 'timestamp');
SELECT griddb_create_or_replace_stub('vf', 'timestampdiff(time_unit, timestamp, timestamp)', 'double precision');
SELECT griddb_create_or_replace_stub('vf', 'griddb_now()', 'timestamp');
/* Array Operations */
SELECT griddb_create_or_replace_stub('f', 'array_length(anyarray)', 'integer');
SELECT griddb_create_or_replace_stub('f', 'element(integer, anyarray)', 'anyelement');
/* Time-series functions */
SELECT griddb_create_or_replace_stub('tsf', 'time_next(timestamp)', 'text');
SELECT griddb_create_or_replace_stub('tsf', 'time_next_only(timestamp)', 'text');
SELECT griddb_create_or_replace_stub('tsf', 'time_prev(timestamp)', 'text');
SELECT griddb_create_or_replace_stub('tsf', 'time_prev_only(timestamp)', 'text');
SELECT griddb_create_or_replace_stub('tsf', 'time_interpolated(anyelement, timestamp)', 'text');
SELECT griddb_create_or_replace_stub('tsf', 'max_rows(anyelement)', 'text');
SELECT griddb_create_or_replace_stub('tsf', 'min_rows(anyelement)', 'text');
SELECT griddb_create_or_replace_stub('tsf', 'time_sampling(timestamp,timestamp,integer,time_unit)', 'text');
SELECT griddb_create_or_replace_stub('tsf', 'time_sampling(anyelement,timestamp,timestamp,integer,time_unit)', 'text');
/* Aggregate function */
SELECT griddb_create_or_replace_stub('a', 'time_avg(anyelement)', 'double precision');