-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearch.sql
More file actions
287 lines (265 loc) · 6.39 KB
/
Copy pathsearch.sql
File metadata and controls
287 lines (265 loc) · 6.39 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
create function schema.search(
_schema text = null,
_type text = null,
_search text = null,
_verbose boolean = true
)
returns table (
type text,
schema text,
name text,
comment text,
definition text,
table_schema text,
table_name text
)
language plpgsql
as
$$
declare
_schemas text[];
begin
select p._schema, p._type, p._search
into _schema, _type, _search
from schema._prepare_params(_schema, _type, _search) p;
_schemas = schema._get_schema_array(_schema);
if _schemas is null or _schemas = '{}' then
raise exception 'No schema found for expression: %', _schema;
end if;
if _verbose then
raise notice 'Search schema: %', _schemas;
raise notice 'Search type: %', _type;
raise notice 'Search text: %', _search;
end if;
if schema._temp_exists('search') then
drop table pg_temp.search;
end if;
create temp table pg_temp.search as
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._extensions() t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._types(_schemas) t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._enums(_schemas) t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._ranges(_schemas) t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._domains(_schemas) t
where
schema._search_filter(t, _type, _search);
perform schema._create_table_temp_tables(_schemas);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._tables_full(_schemas) t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
sub.type,
sub.schema,
sub.name,
sub.comment,
sub.definition,
sub.table_schema,
sub.table_name
from (
select
t.type,
t.schema,
t.table_name || '.' || quote_ident(t.name) as name,
t.comment,
t.definition,
t.table_schema,
t.table_name
from _columns t
) sub
where
schema._search_filter(sub, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
t.table_schema,
t.table_name
from _constraints t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
t.table_schema,
t.table_name
from _indexes t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
t.table_schema,
t.table_name
from _triggers t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
t.table_schema,
t.table_name
from _policies t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
sub.type,
sub.schema,
sub.name,
sub.comment,
sub.definition,
sub.table_schema,
sub.table_name
from (
select
t.type,
t.schema,
t.name,
t.comment,
string_agg(t.definition, E'\n') as definition,
t.table_schema,
t.table_name
from _sequences t
group by
t.type,
t.schema,
t.name,
t.comment,
t.table_schema,
t.table_name
) sub
where
schema._search_filter(sub, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._views(_schemas) t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._routines(_schemas) t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._rules(_schemas) t
where
schema._search_filter(t, _type, _search);
insert into pg_temp.search
select
t.type,
t.schema,
t.name,
t.comment,
t.definition,
null as table_schema,
null as table_name
from schema._aggregates(_schemas) t
where
schema._search_filter(t, _type, _search);
return query
select
r.type, r.schema, r.name, r.comment, r.definition, r.table_schema, r.table_name
from pg_temp.search r
order by
r.schema, r.type desc, r.name;
end;
$$;
comment on function schema.search(text, text, text, boolean) is 'Search and retrieve the schema objects in the database.';