-
Notifications
You must be signed in to change notification settings - Fork 5
/
pg_global_temp_tables.sql
209 lines (190 loc) · 7.42 KB
/
pg_global_temp_tables.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
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
-- pg_global_temp_tables
--
-- Emulates Oracle-style global temporary tables in PostgreSQL
-- Written by Alexey Yakovlev <yallie@yandex.ru>
create or replace function create_permanent_temp_table(
p_table_name varchar,
p_schema varchar default null)
returns void as $$
declare
-- https://github.com/yallie/pg_global_temp_tables
v_table_name varchar := p_table_name || '$tmp';
v_trigger_name varchar := p_table_name || '$iud';
v_final_statement text;
v_table_statement text; -- create temporary table...
v_all_column_list text; -- id, name, ...
v_new_column_list text; -- new.id, new.name, ...
v_assignment_list text; -- id = new.id, name = new.name, ...
v_cols_types_list text; -- id bigint, name varchar, ...
v_old_column_list text; -- id = old.id, name = old.name, ...
v_old_pkey_column text; -- id = old.id
begin
-- check if the temporary table exists
if not exists(select 1 from pg_class where relname = p_table_name and relpersistence = 't') then
raise exception 'Temporary table % does not exist. %', p_table_name, 'Create an ordinary temp ' ||
'table first, then use create_permanent_temp_table function to convert it to a permanent one.'
using errcode = 'UTMP1';
end if;
-- make sure that the schema is defined
if p_schema is null or p_schema = '' then
p_schema := current_schema;
end if;
-- generate the temporary table statement
with pkey as
(
select cc.conrelid, format(E',
constraint %I primary key(%s)', cc.conname,
string_agg(a.attname, ', ' order by array_position(cc.conkey, a.attnum))) pkey
from pg_catalog.pg_constraint cc
join pg_catalog.pg_class c on c.oid = cc.conrelid
join pg_catalog.pg_attribute a on a.attrelid = cc.conrelid and a.attnum = any(cc.conkey)
where cc.contype = 'p'
group by cc.conrelid, cc.conname
)
select format(E'\tcreate temporary table if not exists %I\n\t(\n%s%s\n\t)\n\ton commit drop;',
v_table_name,
string_agg(
format(E'\t\t%I %s%s%s',
a.attname,
pg_catalog.format_type(a.atttypid, a.atttypmod),
case when a.attnotnull then ' not null' else '' end,
case when a.atthasdef = true then ' default ' || pg_get_expr(d.adbin, d.adrelid) else '' end
), E',\n'
order by a.attnum
),
(select pkey from pkey where pkey.conrelid = c.oid)) as sql
into v_table_statement
from pg_catalog.pg_class c
join pg_catalog.pg_attribute a on a.attrelid = c.oid and a.attnum > 0
left outer join pg_catalog.pg_attrdef d on d.adrelid = a.attrelid and d.adnum = a.attnum
join pg_catalog.pg_type t on a.atttypid = t.oid
where c.relname = p_table_name and c.relpersistence = 't'
group by c.oid, c.relname;
-- generate the lists of columns
select
string_agg(a.attname, ', '),
string_agg(format('%s', case when a.atthasdef = true then 'coalesce(new.' || a.attname || ', ' || pg_get_expr(d.adbin, d.adrelid) || ')' else 'new.' || a.attname end), ', '),
string_agg(format('%I = new.%I', a.attname, a.attname), ', '),
string_agg(format('%I %s', a.attname, pg_catalog.format_type(a.atttypid, a.atttypmod)), ', '),
string_agg(format('%I = old.%I', a.attname, a.attname), ' and ')
into
v_all_column_list, v_new_column_list, v_assignment_list, v_cols_types_list, v_old_column_list
from pg_catalog.pg_class c
join pg_catalog.pg_attribute a on a.attrelid = c.oid and a.attnum > 0
left outer join pg_catalog.pg_attrdef d on d.adrelid = a.attrelid and d.adnum = a.attnum
join pg_catalog.pg_type t on a.atttypid = t.oid
where c.relname = p_table_name and c.relpersistence = 't';
-- generate the list of primary key columns
select string_agg(format('%I = old.%I', a.attname, a.attname), ' and '
order by array_position(cc.conkey, a.attnum))
into v_old_pkey_column
from pg_catalog.pg_constraint cc
join pg_catalog.pg_class c on c.oid = cc.conrelid
join pg_catalog.pg_attribute a on a.attrelid = cc.conrelid and a.attnum = any(cc.conkey)
left outer join pg_catalog.pg_attrdef d on d.adrelid = a.attrelid and d.adnum = a.attnum
where cc.contype = 'p' and c.relname = p_table_name and c.relpersistence = 't'
group by cc.conrelid, cc.conname;
-- if primary key is defined, use the primary key columns
if length(v_old_pkey_column) > 0 then
v_old_column_list := v_old_pkey_column;
end if;
-- generate the view function
v_final_statement := format(E'-- rename the original table to avoid the conflict
alter table %I rename to %I;
-- the function to select from the temporary table
create or replace function %I.%I() returns table(%s) as $x$
begin
-- generated by pg_global_temp_tables
-- create table statement
%s
return query select * from %I;
end;
$x$ language plpgsql
set client_min_messages to error;\n',
p_table_name, v_table_name,
p_schema, p_table_name, v_cols_types_list,
v_table_statement, v_table_name);
-- generate the view
v_final_statement := v_final_statement || format(E'
create or replace view %I.%I as
select * from %I.%I();\n',
p_schema, p_table_name, p_schema, p_table_name);
-- generate the trigger function
v_final_statement := v_final_statement || format(E'
create or replace function %I.%I() returns trigger as $x$
begin
-- generated by pg_global_temp_tables
-- create temporary table
%s
-- handle the trigger operation
if lower(tg_op) = \'insert\' then
insert into %I(%s)
values (%s);
return new;
elsif lower(tg_op) = \'update\' then
update %I
set %s
where %s;
return new;
elsif lower(tg_op) = \'delete\' then
delete from %I
where %s;
return old;
end if;
end;
$x$ language plpgsql set client_min_messages to error;\n',
p_schema, v_trigger_name, v_table_statement, -- function header
v_table_name, v_all_column_list, v_new_column_list, -- insert
v_table_name, v_assignment_list, v_old_column_list, -- update
v_table_name, v_old_column_list); -- delete
-- generate the view trigger
v_final_statement := v_final_statement || format(E'
drop trigger if exists %I on %I.%I;
create trigger %I
instead of insert or update or delete on %I.%I
for each row
execute procedure %I.%I();',
v_trigger_name, p_schema, p_table_name,
v_trigger_name, p_schema, p_table_name,
p_schema, v_trigger_name);
-- create all objects at once
execute v_final_statement;
end;
$$ language plpgsql set client_min_messages to error;
create or replace function drop_permanent_temp_table(
p_table_name varchar,
p_schema varchar default null)
returns void as $$
declare
-- https://github.com/yallie/pg_global_temp_tables
v_table_name varchar := p_table_name || '$tmp';
v_trigger_name varchar := p_table_name || '$iud';
v_count int;
v_drop_statements text;
begin
-- make sure that the schema is defined
if p_schema is null or p_schema = '' then
p_schema := current_schema;
end if;
-- check if the supporting functions exist
select count(*)
into v_count
from pg_catalog.pg_proc p
join pg_catalog.pg_namespace n on n.oid = p.pronamespace
where p.proname in (p_table_name, v_trigger_name) and
p.pronargs = 0 and n.nspname = p_schema and
p.prosrc like '%pg_global_temp_tables%';
if v_count <> 2 then
raise exception 'The table %.% does not seem to be persistent temporary table. %', p_schema,
p_table_name, 'The function only supports tables created by pg_global_temp_tables library.'
using errcode = 'UTMP2';
end if;
-- generate the drop function statements
v_drop_statements := format(E'-- drop the functions and cascade the view
drop function %I.%I() cascade;
drop function %I.%I() cascade;',
p_schema, p_table_name, p_schema, v_trigger_name);
-- drop the functions
execute v_drop_statements;
end;
$$ language plpgsql set client_min_messages to error;