-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathschema_compare_ext_pkg.sql
More file actions
312 lines (303 loc) · 8.44 KB
/
schema_compare_ext_pkg.sql
File metadata and controls
312 lines (303 loc) · 8.44 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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
---select * from diff.schema_tables_compare('airlines', 'hettie','postgres_air', 'postgres_air')
---select * from diff.columns_schema_compare('airlines', 'hettie','postgres_air', 'postgres_air')
---select * from diff.full_columns_schema_compare('airlines', 'hettie','postgres_air', 'postgres_air', 'frequent_flyer')
drop type if exists diff.object_schema_diff_record cascade;
create type diff.object_schema_diff_record as (
location text,
schema_name text,
object_name text,
object_type text,
object_owner text
);
drop type if exists diff.column_schema_diff_record cascade;
create type diff.column_schema_diff_record as (
location text,
schema_name text,
table_name text,
column_name text,
data_type text
);
drop type if exists diff.full_column_schema_diff_record cascade;
create type diff.full_column_schema_diff_record as (
location text,
schema_name text,
table_name text,
ordinal_position int,
column_name text,
data_type text,
nullable text,
default_val text
);
create or replace function diff.schema_tables_compare(p_source_1 text,
p_source_2 text,
p_schema_1 text,
p_schema_2 text)
returns setof diff.object_schema_diff_record
language plpgsql
as
$body$
begin
return query
execute
$sql$ select $sql$|| quote_literal(p_source_1)||
$sql$,$sql$|| quote_literal(p_schema_1)||
$sql$,
a.* from
(select relname::text,
case relkind when 'r' then 'table'
when 'v' then 'view'
else 'matview'
end ,
rolname ::text from $sql$||p_source_1||
$sql$_catalog_ft.pg_class c
join $sql$||p_source_1||$sql$_catalog_ft.pg_namespace n
on n.oid=relnamespace
join $sql$||p_source_1||$sql$_catalog_ft.pg_roles rl
on relowner=rl.oid
where relkind in ('r', 'm', 'v')
and nspname=$sql$||quote_literal(p_schema_1)|| $sql$
except
select relname::text,
case relkind when 'r' then 'table'
when 'v' then 'view'
else 'matview'
end,
rolname ::text from $sql$||p_source_2||
$sql$_catalog_ft.pg_class c
join $sql$||p_source_2||$sql$_catalog_ft.pg_namespace n
on n.oid=relnamespace
join $sql$||p_source_2||$sql$_catalog_ft.pg_roles rl
on relowner=rl.oid
where relkind in ('r', 'm', 'v')
and nspname =$sql$||quote_literal(p_schema_2)|| $sql$)a
union all
select $sql$|| quote_literal(p_source_2)||
$sql$,$sql$|| quote_literal(p_schema_2)||
$sql$,
a.* from
(select relname::text,
case relkind when 'r' then 'table'
when 'v' then 'view'
else 'matview'
end,
rolname ::text from $sql$||p_source_2||
$sql$_catalog_ft.pg_class c
join $sql$||p_source_2||$sql$_catalog_ft.pg_namespace n
on n.oid=relnamespace
join $sql$||p_source_2||$sql$_catalog_ft.pg_roles rl
on relowner=rl.oid
where relkind in ('r', 'm', 'v')
and nspname=$sql$||quote_literal(p_schema_2)|| $sql$
except
select relname::text,
case relkind when 'r' then 'table'
when 'v' then 'view'
else 'matview'
end,
rolname ::text from $sql$||p_source_1||
$sql$_catalog_ft.pg_class c
join $sql$||p_source_1||$sql$_catalog_ft.pg_namespace n
on n.oid=relnamespace
join $sql$||p_source_1||$sql$_catalog_ft.pg_roles rl
on relowner=rl.oid
where relkind in ('r', 'm', 'v')
and nspname =$sql$||quote_literal(p_schema_1)|| $sql$)a
order by 1,2$sql$;
end;
$body$;
--
create or replace function diff.columns_schema_compare(p_source_1 text,
p_source_2 text,
p_schema_1 text,
p_schema_2 text,
p_table text default null)
returns setof diff.column_schema_diff_record
language plpgsql
as
$body$
declare
v_sql text;
begin
v_sql :=
$sql$ select $sql$|| quote_literal(p_source_1)||
$sql$,$sql$|| quote_literal(p_schema_1)||
$sql$,
a.* from
(
select table_name::text,column_name::text,data_type::text
from $sql$||p_source_1||
$sql$_info_ft.columns
where table_schema=$sql$||quote_literal(p_schema_1)||
case when p_table is null then $sql$ $sql$
else $sql$ and table_name =$sql$||quote_literal(p_table)
end
||$sql$
except
select table_name::text,column_name::text,data_type::text
from $sql$||p_source_2||
$sql$_info_ft.columns
where table_schema=$sql$||quote_literal(p_schema_2)||
case when p_table is null then $sql$ $sql$
else $sql$ and table_name =$sql$||quote_literal(p_table)
end
||$sql$
)a
union all
select $sql$|| quote_literal(p_source_2)||
$sql$,$sql$|| quote_literal(p_schema_2)||
$sql$,
a.* from (
select table_name::text,column_name::text,data_type::text
from $sql$||p_source_2||
$sql$_info_ft.columns
where table_schema=$sql$||quote_literal(p_schema_2)||
case when p_table is null then $sql$ $sql$
else $sql$ and table_name =$sql$||quote_literal(p_table)
end
||$sql$
except
select table_name::text,column_name::text,data_type::text
from $sql$||p_source_1||
$sql$_info_ft.columns
where table_schema=$sql$||quote_literal(p_schema_1)||
case when p_table is null then $sql$ $sql$
else $sql$ and table_name =$sql$||quote_literal(p_table)
end
||$sql$
)a
order by 2,3,1 $sql$
;
--raise notice 'table:%, %',p_table, v_sql;
return query
execute v_sql;
end;
$body$;
create or replace function diff.full_columns_schema_compare(
p_source_1 text,
p_source_2 text,
p_schema_1 text,
p_schema_2 text,
p_table text default null)
returns setof diff.full_column_schema_diff_record
language plpgsql
as
$body$
declare
v_sql text;
begin
v_sql := $sql$ select $sql$||
quote_literal(p_source_1)||
$sql$,$sql$||
quote_literal(p_schema_1)||$sql$,
a.* from (
select table_name::text,
ordinal_position::int,
column_name::text,data_type::text||
case when character_maximum_length is not null
then '('||character_maximum_length::text
||')'
else ''
end ||
case data_type when 'numeric'
then '('||numeric_precision::text||','||numeric_scale::text|| ')'
else ''
end
as data_type,
case is_nullable
when 'NO' then 'NOT NULL'
else ''
end as nullable,
'default '||column_default default_val
from $sql$||p_source_1||
$sql$_info_ft.columns
where table_schema=$sql$||quote_literal(p_schema_1)||
case when p_table is null then $sql$ $sql$
else $sql$ and table_name =$sql$||quote_literal(p_table)
end
||$sql$
except
select
table_name::text,
ordinal_position::int,
column_name::text,
data_type::text||
case when character_maximum_length is not null
then '('||character_maximum_length::text
||')'
else ''
end ||
case data_type when 'numeric'
then '('||numeric_precision::text||','||numeric_scale::text|| ')'
else ''
end
as data_type,
case is_nullable when 'NO' then 'NOT NULL'
else ''
end as nullable,
'default '||column_default default_val
from $sql$||p_source_2||
$sql$_info_ft.columns
where table_schema=$sql$||quote_literal(p_schema_2)||
case when p_table is null then $sql$ $sql$
else $sql$ and table_name =$sql$||quote_literal(p_table)
end
||$sql$
)a
union all
select $sql$|| quote_literal(p_source_2)||
$sql$,$sql$|| quote_literal(p_schema_2)||
$sql$,
a.* from (
select table_name::text,ordinal_position::int,
column_name::text,data_type::text||
case when character_maximum_length is not null then '('||character_maximum_length::text
||')'
else ''
end ||
case data_type when 'numeric'
then '('||numeric_precision::text||','||numeric_scale::text|| ')'
else ''
end
as data_type,
case is_nullable when 'NO' then 'NOT NULL'
else ''
end as nullable,
'default '||column_default default_val
from $sql$||p_source_2||
$sql$_info_ft.columns
where table_schema=$sql$||quote_literal(p_schema_2)||
case when p_table is null then $sql$ $sql$
else $sql$ and table_name =$sql$||quote_literal(p_table)
end
||$sql$
except
select table_name::text,ordinal_position::int,
column_name::text,data_type::text||
case when character_maximum_length is not null then '('||character_maximum_length::text
||')'
else ''
end ||
case data_type when 'numeric'
then '('||numeric_precision::text||','||numeric_scale::text|| ')'
else ''
end
as data_type,
case is_nullable when 'NO' then 'NOT NULL'
else ''
end as nullable,
'default '||column_default default_val
from $sql$||p_source_1||
$sql$_info_ft.columns
where table_schema=$sql$||quote_literal(p_schema_1)||
case when p_table is null then $sql$ $sql$
else $sql$ and table_name =$sql$||quote_literal(p_table)
end
||$sql$
)a
order by 2,3,1 $sql$
;
--raise notice 'table:%, %',p_table, v_sql;
return query
execute v_sql;
end;
$body$;