-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-views.sql
504 lines (419 loc) · 10.7 KB
/
create-views.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
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
begin;
do
$$
begin
if not exists (select schema_name from information_schema.schemata where schema_name = 'api_historic_v0_1_0_alpha') then
create schema api_historic_v0_1_0_alpha;
end if;
end
$$
;
commit;
begin;
create or replace view api_historic_v0_1_0_alpha.agency16 as
select *
from census_agency16
order by census_agency16.index
;
create or replace view api_historic_v0_1_0_alpha.agency17 as
select *
from census_agency17
order by census_agency17.index
;
create or replace view api_historic_v0_1_0_alpha.agency18 as
select *
from census_agency18
order by census_agency18.index
;
create or replace view api_historic_v0_1_0_alpha.agency19 as
select *
from census_agency19
order by census_agency19.index
;
create or replace view api_historic_v0_1_0_alpha.agency20 as
select *
from census_agency20
order by census_agency20.index
;
create or replace view api_historic_v0_1_0_alpha.agency21 as
select *
from census_agency21
order by census_agency21.index
;
create or replace view api_historic_v0_1_0_alpha.agency22 as
select *
from census_agency22
order by census_agency22.index
;
create or replace view api_historic_v0_1_0_alpha.captext19 as
select *
from census_captext19
order by census_captext19.index
;
create or replace view api_historic_v0_1_0_alpha.captext20 as
select *
from census_captext20
order by census_captext20.index
;
create or replace view api_historic_v0_1_0_alpha.captext21 as
select *
from census_captext21
order by census_captext21.index
;
create or replace view api_historic_v0_1_0_alpha.captext22 as
select *
from census_captext22
order by census_captext22.index
;
create or replace view api_historic_v0_1_0_alpha.captext_formatted19 as
select *
from census_captext_formatted19
order by census_captext_formatted19.index
;
create or replace view api_historic_v0_1_0_alpha.captext_formatted20 as
select *
from census_captext_formatted20
order by census_captext_formatted20.index
;
create or replace view api_historic_v0_1_0_alpha.captext_formatted21 as
select *
from census_captext_formatted21
order by census_captext_formatted21.index
;
create or replace view api_historic_v0_1_0_alpha.captext_formatted22 as
select *
from census_captext_formatted22
order by census_captext_formatted22.index
;
create or replace view api_historic_v0_1_0_alpha.cfda16 as
select *
from census_cfda16
order by census_cfda16.index
;
create or replace view api_historic_v0_1_0_alpha.cfda17 as
select *
from census_cfda17
order by census_cfda17.index
;
create or replace view api_historic_v0_1_0_alpha.cfda18 as
select *
from census_cfda18
order by census_cfda18.index
;
create or replace view api_historic_v0_1_0_alpha.cfda19 as
select *
from census_cfda19
order by census_cfda19.index
;
create or replace view api_historic_v0_1_0_alpha.cfda20 as
select *
from census_cfda20
order by census_cfda20.index
;
create or replace view api_historic_v0_1_0_alpha.cfda21 as
select *
from census_cfda21
order by census_cfda21.index
;
create or replace view api_historic_v0_1_0_alpha.cfda22 as
select *
from census_cfda22
order by census_cfda22.index
;
create or replace view api_historic_v0_1_0_alpha.cpas16 as
select *
from census_cpas16
order by census_cpas16.index
;
create or replace view api_historic_v0_1_0_alpha.cpas17 as
select *
from census_cpas17
order by census_cpas17.index
;
create or replace view api_historic_v0_1_0_alpha.cpas18 as
select *
from census_cpas18
order by census_cpas18.index
;
create or replace view api_historic_v0_1_0_alpha.cpas19 as
select *
from census_cpas19
order by census_cpas19.index
;
create or replace view api_historic_v0_1_0_alpha.cpas20 as
select *
from census_cpas20
order by census_cpas20.index
;
create or replace view api_historic_v0_1_0_alpha.cpas21 as
select *
from census_cpas21
order by census_cpas21.index
;
create or replace view api_historic_v0_1_0_alpha.cpas22 as
select *
from census_cpas22
order by census_cpas22.index
;
create or replace view api_historic_v0_1_0_alpha.duns16 as
select *
from census_duns16
order by census_duns16.index
;
create or replace view api_historic_v0_1_0_alpha.duns17 as
select *
from census_duns17
order by census_duns17.index
;
create or replace view api_historic_v0_1_0_alpha.duns18 as
select *
from census_duns18
order by census_duns18.index
;
create or replace view api_historic_v0_1_0_alpha.duns19 as
select *
from census_duns19
order by census_duns19.index
;
create or replace view api_historic_v0_1_0_alpha.duns20 as
select *
from census_duns20
order by census_duns20.index
;
create or replace view api_historic_v0_1_0_alpha.duns21 as
select *
from census_duns21
order by census_duns21.index
;
create or replace view api_historic_v0_1_0_alpha.duns22 as
select *
from census_duns22
order by census_duns22.index
;
create or replace view api_historic_v0_1_0_alpha.eins16 as
select *
from census_eins16
order by census_eins16.index
;
create or replace view api_historic_v0_1_0_alpha.eins17 as
select *
from census_eins17
order by census_eins17.index
;
create or replace view api_historic_v0_1_0_alpha.eins18 as
select *
from census_eins18
order by census_eins18.index
;
create or replace view api_historic_v0_1_0_alpha.eins19 as
select *
from census_eins19
order by census_eins19.index
;
create or replace view api_historic_v0_1_0_alpha.eins20 as
select *
from census_eins20
order by census_eins20.index
;
create or replace view api_historic_v0_1_0_alpha.eins21 as
select *
from census_eins21
order by census_eins21.index
;
create or replace view api_historic_v0_1_0_alpha.eins22 as
select *
from census_eins22
order by census_eins22.index
;
create or replace view api_historic_v0_1_0_alpha.findings16 as
select *
from census_findings16
order by census_findings16.index
;
create or replace view api_historic_v0_1_0_alpha.findings17 as
select *
from census_findings17
order by census_findings17.index
;
create or replace view api_historic_v0_1_0_alpha.findings18 as
select *
from census_findings18
order by census_findings18.index
;
create or replace view api_historic_v0_1_0_alpha.findings19 as
select *
from census_findings19
order by census_findings19.index
;
create or replace view api_historic_v0_1_0_alpha.findings20 as
select *
from census_findings20
order by census_findings20.index
;
create or replace view api_historic_v0_1_0_alpha.findings21 as
select *
from census_findings21
order by census_findings21.index
;
create or replace view api_historic_v0_1_0_alpha.findings22 as
select *
from census_findings22
order by census_findings22.index
;
create or replace view api_historic_v0_1_0_alpha.findingstext19 as
select *
from census_findingstext19
order by census_findingstext19.index
;
create or replace view api_historic_v0_1_0_alpha.findingstext20 as
select *
from census_findingstext20
order by census_findingstext20.index
;
create or replace view api_historic_v0_1_0_alpha.findingstext21 as
select *
from census_findingstext21
order by census_findingstext21.index
;
create or replace view api_historic_v0_1_0_alpha.findingstext22 as
select *
from census_findingstext22
order by census_findingstext22.index
;
create or replace view api_historic_v0_1_0_alpha.findingstext_formatted19 as
select *
from census_findingstext_formatted19
order by census_findingstext_formatted19.index
;
create or replace view api_historic_v0_1_0_alpha.findingstext_formatted20 as
select *
from census_findingstext_formatted20
order by census_findingstext_formatted20.index
;
create or replace view api_historic_v0_1_0_alpha.findingstext_formatted21 as
select *
from census_findingstext_formatted21
order by census_findingstext_formatted21.index
;
create or replace view api_historic_v0_1_0_alpha.findingstext_formatted22 as
select *
from census_findingstext_formatted22
order by census_findingstext_formatted22.index
;
create or replace view api_historic_v0_1_0_alpha.gen16 as
select *
from census_gen16
order by census_gen16.index
;
create or replace view api_historic_v0_1_0_alpha.gen17 as
select *
from census_gen17
order by census_gen17.index
;
create or replace view api_historic_v0_1_0_alpha.gen18 as
select *
from census_gen18
order by census_gen18.index
;
create or replace view api_historic_v0_1_0_alpha.gen19 as
select *
from census_gen19
order by census_gen19.index
;
create or replace view api_historic_v0_1_0_alpha.gen20 as
select *
from census_gen20
order by census_gen20.index
;
create or replace view api_historic_v0_1_0_alpha.gen21 as
select *
from census_gen21
order by census_gen21.index
;
create or replace view api_historic_v0_1_0_alpha.gen22 as
select *
from census_gen22
order by census_gen22.index
;
create or replace view api_historic_v0_1_0_alpha.notes19 as
select *
from census_notes19
order by census_notes19.index
;
create or replace view api_historic_v0_1_0_alpha.notes20 as
select *
from census_notes20
order by census_notes20.index
;
create or replace view api_historic_v0_1_0_alpha.notes21 as
select *
from census_notes21
order by census_notes21.index
;
create or replace view api_historic_v0_1_0_alpha.notes22 as
select *
from census_notes22
order by census_notes22.index
;
create or replace view api_historic_v0_1_0_alpha.passthrough16 as
select *
from census_passthrough16
order by census_passthrough16.index
;
create or replace view api_historic_v0_1_0_alpha.passthrough17 as
select *
from census_passthrough17
order by census_passthrough17.index
;
create or replace view api_historic_v0_1_0_alpha.passthrough18 as
select *
from census_passthrough18
order by census_passthrough18.index
;
create or replace view api_historic_v0_1_0_alpha.passthrough19 as
select *
from census_passthrough19
order by census_passthrough19.index
;
create or replace view api_historic_v0_1_0_alpha.passthrough20 as
select *
from census_passthrough20
order by census_passthrough20.index
;
create or replace view api_historic_v0_1_0_alpha.passthrough21 as
select *
from census_passthrough21
order by census_passthrough21.index
;
create or replace view api_historic_v0_1_0_alpha.passthrough22 as
select *
from census_passthrough22
order by census_passthrough22.index
;
create or replace view api_historic_v0_1_0_alpha.revisions19 as
select *
from census_revisions19
order by census_revisions19.index
;
create or replace view api_historic_v0_1_0_alpha.revisions20 as
select *
from census_revisions20
order by census_revisions20.index
;
create or replace view api_historic_v0_1_0_alpha.revisions21 as
select *
from census_revisions21
order by census_revisions21.index
;
create or replace view api_historic_v0_1_0_alpha.revisions22 as
select *
from census_revisions22
order by census_revisions22.index
;
create or replace view api_historic_v0_1_0_alpha.ueis22 as
select *
from census_ueis22
order by census_ueis22.index
;
commit;
notify pgrst, 'reload schema';