-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsnowflake--2.3.sql
More file actions
289 lines (260 loc) · 9.08 KB
/
snowflake--2.3.sql
File metadata and controls
289 lines (260 loc) · 9.08 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
/* snowflake/snowflake--2.2.sql */
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION snowflake" to load this file. \quit
GRANT USAGE ON SCHEMA snowflake TO public;
CREATE SEQUENCE snowflake.id_seq;
GRANT USAGE ON SEQUENCE snowflake.id_seq TO public;
CREATE FUNCTION snowflake.nextval(regclass = 'snowflake.id_seq'::regclass)
RETURNS pg_catalog.int8
AS 'MODULE_PATHNAME', 'snowflake_nextval'
LANGUAGE C;
GRANT EXECUTE ON FUNCTION snowflake.nextval(regclass) TO public;
CREATE FUNCTION snowflake.currval(regclass = 'snowflake.id_seq'::regclass)
RETURNS pg_catalog.int8
AS 'MODULE_PATHNAME', 'snowflake_currval'
LANGUAGE C;
GRANT EXECUTE ON FUNCTION snowflake.currval(regclass) TO public;
CREATE FUNCTION snowflake.get_epoch(pg_catalog.int8)
RETURNS pg_catalog.numeric
AS 'MODULE_PATHNAME', 'snowflake_get_epoch'
LANGUAGE C;
GRANT EXECUTE ON FUNCTION snowflake.get_epoch(pg_catalog.int8) TO public;
CREATE FUNCTION snowflake.get_count(pg_catalog.int8)
RETURNS pg_catalog.int4
AS 'MODULE_PATHNAME', 'snowflake_get_count'
LANGUAGE C;
GRANT EXECUTE ON FUNCTION snowflake.get_count(pg_catalog.int8) TO public;
CREATE FUNCTION snowflake.get_node(pg_catalog.int8)
RETURNS pg_catalog.int4
AS 'MODULE_PATHNAME', 'snowflake_get_node'
LANGUAGE C;
GRANT EXECUTE ON FUNCTION snowflake.get_node(pg_catalog.int8) TO public;
CREATE FUNCTION snowflake.format(pg_catalog.int8)
RETURNS jsonb
AS $$
SELECT ('{"ts": "' || to_timestamp(snowflake.get_epoch($1))::text ||
'", "count": ' || snowflake.get_count($1)::text ||
', "id": ' || snowflake.get_node($1)::text ||
'}')::jsonb;
$$ language sql;
GRANT EXECUTE ON FUNCTION snowflake.format(pg_catalog.int8) TO public;
-- ----------------------------------------------------------------------
-- convert_column_to_int8()
--
-- Change the data type of a column to int8 and recursively alter
-- all columns that reference this one through foreign key constraints.
-- ----------------------------------------------------------------------
CREATE OR REPLACE FUNCTION snowflake.convert_column_to_int8(p_rel regclass, p_attnum smallint)
RETURNS integer
SET search_path = pg_catalog
AS $$
DECLARE
v_attr record;
v_fk record;
v_attidx integer;
v_cmd text;
v_num_altered integer := 0;
BEGIN
-- ----
-- Get the attribute definition
-- ----
SELECT * INTO v_attr
FROM pg_namespace N
JOIN pg_class C
ON N.oid = C.relnamespace
JOIN pg_attribute A
ON C.oid = A.attrelid
WHERE A.attrelid = p_rel
AND A.attnum = p_attnum;
IF NOT FOUND THEN
RAISE EXCEPTION 'Attribute % of reation % not found', p_attnum, p_rel;
END IF;
-- ----
-- If the attribute type is not bigint, we change it
-- ----
IF v_attr.atttypid <> 'int8'::regtype THEN
v_cmd = 'ALTER TABLE ' ||
quote_ident(v_attr.nspname) || '.' ||
quote_ident(v_attr.relname) ||
' ALTER COLUMN ' ||
quote_ident(v_attr.attname) ||
' SET DATA TYPE int8';
RAISE NOTICE 'EXECUTE %', v_cmd;
EXECUTE v_cmd;
v_num_altered = v_num_altered + 1;
END IF;
-- ----
-- Convert foreign keys referencing this column as well
-- ----
FOR v_fk IN
SELECT * FROM pg_constraint F
JOIN pg_class C
ON C.oid = F.conrelid
JOIN pg_namespace N
ON N.oid = C.relnamespace
WHERE F.contype = 'f'
AND F.confrelid = v_attr.attrelid
LOOP
-- ----
-- Lookup the attribute index in the possibly compount FK
-- ----
v_attidx = array_position(v_fk.confkey, v_attr.attnum);
IF v_attidx IS NULL THEN
CONTINUE;
END IF;
-- ----
-- Recurse for the referencing column
-- ----
v_num_altered = v_num_altered +
snowflake.convert_column_to_int8(v_fk.conrelid,
v_fk.conkey[v_attidx]);
END LOOP;
RETURN v_num_altered;
END;
$$ LANGUAGE plpgsql;
-- ----------------------------------------------------------------------
-- convert_sequence_to_snowflake()
--
-- If input sequence is used for Serial or Bigserial DEFAULT values generation,
-- or participate in an IDENTITY constraint, alter this column definition to
-- use snowflake's nextval() as a DEFAULT value.
--
-- NOTES:
-- 1. Eventually change the data type of the column to bigint.
-- 2. IDENTITY ALWAYS restriction will be eased to DEFAULT.
-- ----------------------------------------------------------------------
CREATE OR REPLACE FUNCTION snowflake.convert_sequence_to_snowflake(p_seqid regclass)
RETURNS integer
SET search_path = pg_catalog
AS $$
DECLARE
objdesc record; -- contains target (reloid,attnum) value
identdesc record; -- sequence-related flags (attisidentity, atthasdef)
v_attrdef record;
v_cmd text;
v_num_altered integer;
v_last_value bigint;
v_seqname1 text;
extseqname text;
is_serial_def boolean;
textstr text;
-- msg1 record;
BEGIN
-- Identify the (relation,attnum) that uses this sequence as a source
-- for values. Follow the logic of the getOwnedSequences_internal.
--
-- Complain, if such data wasn't found - incoming object may be not
-- a sequence, or sequence which is used for different purposes.
-- objdesc's fields:
-- heapreloid - Oid of the target relation.
-- nspname - namespace of the sequence
-- seqname - sequence name
-- attnum - number of relation's attribute that employs this sequence
SELECT INTO objdesc
refobjid AS heapreloid,
c.relnamespace::regnamespace::text AS nspname,
c.relname AS seqname,
refobjsubid AS attnum
FROM pg_depend AS d JOIN pg_class AS c ON (d.objid = c.oid)
WHERE
classid = 'pg_class'::regclass AND
(deptype = 'i' OR deptype = 'a') AND
c.oid = p_seqid AND relkind = 'S';
IF (objdesc IS NULL) THEN
raise EXCEPTION 'Input value "%" is not used by any relation as a DEFAULT value or an IDENTITY', p_seqid;
RETURN false;
END IF;
SELECT INTO identdesc
(attidentity = 'a' OR attidentity = 'd') AS is_identity,
atthasdef,
c.relnamespace::regnamespace::text AS nspname,
c.relname AS relname,
a.attname AS attname
FROM pg_attribute a JOIN pg_class c ON (c.oid = a.attrelid)
WHERE a.attrelid = objdesc.heapreloid AND a.attnum = objdesc.attnum;
IF (identdesc.is_identity) THEN
UPDATE pg_attribute SET attidentity = ''
WHERE attrelid = objdesc.heapreloid AND attnum = objdesc.attnum;
RAISE NOTICE
'Update pg_attribute: reset attidentity value for table %, column %',
objdesc.heapreloid::regclass, identdesc.attname;
ELSE
-- ----
-- We are looking for column defaults that use the requested
-- sequence and the function nextval(). Because pg_get_expr()
-- omits the schemaname of the sequence if it is "public" we
-- need to be prepared for a schema qualified and unqualified
-- name here.
-- ----
SELECT INTO v_seqname1
quote_ident(objdesc.seqname);
SELECT INTO extseqname
quote_ident(objdesc.nspname) || '.' || quote_ident(objdesc.seqname);
-- Extract DEFAULT definition for the column and conver it into
-- a readable string representation.
SELECT INTO textstr
pg_get_expr(ad.adbin, ad.adrelid, true)
FROM pg_attrdef ad
WHERE adrelid = objdesc.heapreloid AND adnum = objdesc.attnum;
-- Check that the DEFAULT expression contains input sequence in a form
-- as related to the serial and bigserial type.
SELECT INTO is_serial_def
CASE WHEN
textstr = 'nextval(' || quote_literal(v_seqname1) || '::regclass)' OR
textstr = 'nextval(' || quote_literal(extseqname) || '::regclass)'
THEN true ELSE false END;
-- If there are another DEFAULT expression already set for this column, we
-- are not so bold to remove it, just complain,
IF (NOT is_serial_def) THEN
raise EXCEPTION
'definition of DEFAULT value for column "%" of relation "%" does not correspond serial or bigserial type: "%"',
identdesc.attname, identdesc.relname, textstr;
END IF;
END IF;
-- ----
-- If the attribute type is not bigint, we change it
-- ----
v_num_altered =
snowflake.convert_column_to_int8(objdesc.heapreloid::regclass,
objdesc.attnum::smallint);
-- ----
-- Now we can change the default to snowflake.nextval()
-- ----
v_cmd = 'ALTER TABLE ' ||
quote_ident(identdesc.nspname) || '.' ||
quote_ident(identdesc.relname) ||
' ALTER COLUMN ' || quote_ident(identdesc.attname) ||
' SET DEFAULT snowflake.nextval(' ||
quote_literal(
quote_ident(objdesc.nspname) || '.' ||
quote_ident(objdesc.seqname)
) || '::regclass)';
RAISE NOTICE 'EXECUTE %', v_cmd;
EXECUTE v_cmd;
-- ----
-- Finally we need to change the sequence itself to settings that
-- prevent pg_catalog.nextval() from working. We do this by setting
-- the sequence's MAXVAL to its current last_value + 1, then invoke
-- our own nextval() function to bump it.
-- ----
v_cmd = 'SELECT last_value FROM ' ||
pg_catalog.quote_ident(N.nspname) || '.' ||
pg_catalog.quote_ident(C.relname)
FROM pg_catalog.pg_class C
JOIN pg_catalog.pg_namespace N ON N.oid = C.relnamespace
WHERE C.oid = p_seqid;
EXECUTE v_cmd INTO v_last_value;
v_cmd = 'ALTER SEQUENCE ' ||
pg_catalog.quote_ident(N.nspname) || '.' ||
pg_catalog.quote_ident(C.relname) ||
' NO CYCLE MAXVALUE ' ||
v_last_value + 1
FROM pg_catalog.pg_class C
JOIN pg_catalog.pg_namespace N ON N.oid = C.relnamespace
WHERE C.oid = p_seqid;
RAISE NOTICE '%', v_cmd;
EXECUTE v_cmd;
PERFORM snowflake.nextval(p_seqid);
RETURN v_num_altered;
END;
$$ LANGUAGE plpgsql;