forked from postgrespro/pg_pathman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg_pathman--1.4--1.5.sql
955 lines (801 loc) · 26.6 KB
/
pg_pathman--1.4--1.5.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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
ALTER TABLE @[email protected]_config DROP CONSTRAINT pathman_config_interval_check;
DROP FUNCTION @[email protected]_interval_value(REGCLASS, TEXT, INTEGER,
TEXT, TEXT);
CREATE OR REPLACE FUNCTION @[email protected]_interval_value(
partrel REGCLASS,
expr TEXT,
parttype INTEGER,
range_interval TEXT)
RETURNS BOOL AS 'pg_pathman', 'validate_interval_value'
LANGUAGE C;
ALTER TABLE @[email protected]_config DROP COLUMN cooked_expr;
/*
* Dropped columns are never actually purged, entry in pg_attribute remains.
* Since dealing with different number of attrs in C code is cumbersome,
* let's recreate table instead.
*/
CREATE TABLE @[email protected]_config_tmp (LIKE @[email protected]_config INCLUDING ALL);
INSERT INTO @[email protected]_config_tmp SELECT * FROM @[email protected]_config;
ALTER EVENT TRIGGER pathman_ddl_trigger DISABLE;
DROP TABLE @[email protected]_config;
ALTER TABLE @[email protected]_config_tmp RENAME TO pathman_config;
ALTER EVENT TRIGGER pathman_ddl_trigger ENABLE;
/*
* Get back stuff not preserved by CREATE TABLE LIKE: ACL, RLS and
* pg_extension_config_dump mark.
*/
GRANT SELECT, INSERT, UPDATE, DELETE
ON @[email protected]_config
TO public;
/*
* Row security policy to restrict partitioning operations to owner and superusers only
*/
CREATE POLICY deny_modification ON @[email protected]_config
FOR ALL USING (check_security_policy(partrel));
CREATE POLICY allow_select ON @[email protected]_config FOR SELECT USING (true);
ALTER TABLE @[email protected]_config ENABLE ROW LEVEL SECURITY;
/*
* Enable dump of config tables with pg_dump.
*/
SELECT pg_catalog.pg_extension_config_dump('@[email protected]_config', '');
ALTER TABLE @[email protected]_config ADD CONSTRAINT pathman_config_interval_check
CHECK (@[email protected]_interval_value(partrel,
expr,
parttype,
range_interval));
CREATE TRIGGER pathman_config_trigger
AFTER INSERT OR UPDATE OR DELETE ON @[email protected]_config
FOR EACH ROW EXECUTE PROCEDURE @[email protected]_config_params_trigger_func();
/*
* Get parsed and analyzed expression.
*/
CREATE OR REPLACE FUNCTION @[email protected]_partition_cooked_key(
parent_relid REGCLASS)
RETURNS TEXT AS 'pg_pathman', 'get_partition_cooked_key_pl'
LANGUAGE C STRICT;
/*
* Add new partition
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
parent_relid REGCLASS,
start_value ANYELEMENT,
end_value ANYELEMENT,
partition_name TEXT DEFAULT NULL,
tablespace TEXT DEFAULT NULL)
RETURNS TEXT AS $$
DECLARE
part_name TEXT;
BEGIN
PERFORM @[email protected]_relname(parent_relid);
/* Acquire lock on parent's scheme */
PERFORM @[email protected]_part_modification(parent_relid);
IF start_value >= end_value THEN
RAISE EXCEPTION 'failed to create partition: start_value is greater than end_value';
END IF;
/* Check range overlap */
IF @[email protected]_number_of_partitions(parent_relid) > 0 THEN
PERFORM @[email protected]_range_available(parent_relid,
start_value,
end_value);
END IF;
/* Create new partition */
part_name := @[email protected]_single_range_partition(parent_relid,
start_value,
end_value,
partition_name,
tablespace);
RETURN part_name;
END
$$ LANGUAGE plpgsql;
/*
* Append new partition.
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
parent_relid REGCLASS,
partition_name TEXT DEFAULT NULL,
tablespace TEXT DEFAULT NULL)
RETURNS TEXT AS $$
DECLARE
part_expr_type REGTYPE;
part_name TEXT;
part_interval TEXT;
BEGIN
PERFORM @[email protected]_relname(parent_relid);
/* Acquire lock on parent's scheme */
PERFORM @[email protected]_part_modification(parent_relid);
part_expr_type := @[email protected]_partition_key_type(parent_relid);
IF NOT @[email protected]_date_type(part_expr_type) AND
NOT @[email protected]_operator_supported(part_expr_type, '+') THEN
RAISE EXCEPTION 'type % does not support ''+'' operator', part_expr_type::REGTYPE;
END IF;
SELECT range_interval
FROM @[email protected]_config
WHERE partrel = parent_relid
INTO part_interval;
EXECUTE
format('SELECT @[email protected]_partition_internal($1, $2, $3, ARRAY[]::%s[], $4, $5)',
@[email protected]_base_type(part_expr_type)::TEXT)
USING
parent_relid,
part_expr_type,
part_interval,
partition_name,
tablespace
INTO
part_name;
RETURN part_name;
END
$$ LANGUAGE plpgsql;
/*
* Attach range partition
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
parent_relid REGCLASS,
partition_relid REGCLASS,
start_value ANYELEMENT,
end_value ANYELEMENT)
RETURNS TEXT AS $$
DECLARE
part_expr TEXT;
part_type INTEGER;
rel_persistence CHAR;
v_init_callback REGPROCEDURE;
BEGIN
PERFORM @[email protected]_relname(parent_relid);
PERFORM @[email protected]_relname(partition_relid);
/* Acquire lock on parent's scheme */
PERFORM @[email protected]_part_modification(parent_relid);
/* Ignore temporary tables */
SELECT relpersistence FROM pg_catalog.pg_class
WHERE oid = partition_relid INTO rel_persistence;
IF rel_persistence = 't'::CHAR THEN
RAISE EXCEPTION 'temporary table "%" cannot be used as a partition',
partition_relid::TEXT;
END IF;
/* Check range overlap */
PERFORM @[email protected]_range_available(parent_relid, start_value, end_value);
IF NOT @[email protected]_tuple_convertible(parent_relid, partition_relid) THEN
RAISE EXCEPTION 'partition must have a compatible tuple format';
END IF;
part_expr := @[email protected]_partition_key(parent_relid);
part_type := @[email protected]_partition_type(parent_relid);
IF part_expr IS NULL THEN
RAISE EXCEPTION 'table "%" is not partitioned', parent_relid::TEXT;
END IF;
/* Check if this is a RANGE partition */
IF part_type != 2 THEN
RAISE EXCEPTION '"%" is not a RANGE partition', partition_relid::TEXT;
END IF;
/* Set inheritance */
EXECUTE format('ALTER TABLE %s INHERIT %s', partition_relid, parent_relid);
/* Set check constraint */
EXECUTE format('ALTER TABLE %s ADD CONSTRAINT %s CHECK (%s)',
partition_relid::TEXT,
@[email protected]_check_constraint_name(partition_relid),
@[email protected]_range_condition(partition_relid,
part_expr,
start_value,
end_value));
/* Fetch init_callback from 'params' table */
WITH stub_callback(stub) as (values (0))
SELECT init_callback
FROM stub_callback
LEFT JOIN @[email protected]_config_params AS params
ON params.partrel = parent_relid
INTO v_init_callback;
/* Invoke an initialization callback */
PERFORM @[email protected]_on_partition_created_callback(parent_relid,
partition_relid,
v_init_callback,
start_value,
end_value);
RETURN partition_relid;
END
$$ LANGUAGE plpgsql;
/*
* Create a naming sequence for partitioned table.
*/
CREATE OR REPLACE FUNCTION @[email protected]_naming_sequence(
parent_relid REGCLASS)
RETURNS TEXT AS $$
DECLARE
seq_name TEXT;
BEGIN
seq_name := @[email protected]_sequence_name(parent_relid);
EXECUTE format('DROP SEQUENCE IF EXISTS %s', seq_name);
EXECUTE format('CREATE SEQUENCE %s START 1', seq_name);
RETURN seq_name;
END
$$ LANGUAGE plpgsql
SET client_min_messages = WARNING; /* mute NOTICE message */
/*
* Creates RANGE partitions for specified relation based on datetime attribute
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partitions(
parent_relid REGCLASS,
expression TEXT,
start_value ANYELEMENT,
p_interval INTERVAL,
p_count INTEGER DEFAULT NULL,
partition_data BOOLEAN DEFAULT TRUE)
RETURNS INTEGER AS $$
DECLARE
rows_count BIGINT;
max_value start_value%TYPE;
cur_value start_value%TYPE := start_value;
end_value start_value%TYPE;
part_count INTEGER := 0;
i INTEGER;
BEGIN
PERFORM @[email protected]_for_partitioning(parent_relid,
expression,
partition_data);
IF p_count < 0 THEN
RAISE EXCEPTION '"p_count" must not be less than 0';
END IF;
/* Try to determine partitions count if not set */
IF p_count IS NULL THEN
EXECUTE format('SELECT count(*), max(%s) FROM %s', expression, parent_relid)
INTO rows_count, max_value;
IF rows_count = 0 THEN
RAISE EXCEPTION 'cannot determine partitions count for empty table';
END IF;
p_count := 0;
WHILE cur_value <= max_value
LOOP
cur_value := cur_value + p_interval;
p_count := p_count + 1;
END LOOP;
END IF;
/*
* In case when user doesn't want to automatically create partitions
* and specifies partition count as 0 then do not check boundaries
*/
IF p_count != 0 THEN
/* Compute right bound of partitioning through additions */
end_value := start_value;
FOR i IN 1..p_count
LOOP
end_value := end_value + p_interval;
END LOOP;
/* Check boundaries */
PERFORM @[email protected]_boundaries(parent_relid,
expression,
start_value,
end_value);
END IF;
/* Create sequence for child partitions names */
PERFORM @[email protected]_naming_sequence(parent_relid);
/* Insert new entry to pathman config */
PERFORM @[email protected]_to_pathman_config(parent_relid, expression,
p_interval::TEXT);
IF p_count != 0 THEN
part_count := @[email protected]_range_partitions_internal(
parent_relid,
@[email protected]_range_bounds(start_value,
p_interval,
p_count),
NULL,
NULL);
END IF;
/* Relocate data if asked to */
IF partition_data = true THEN
PERFORM @[email protected]_enable_parent(parent_relid, false);
PERFORM @[email protected]_data(parent_relid);
ELSE
PERFORM @[email protected]_enable_parent(parent_relid, true);
END IF;
RETURN part_count;
END
$$ LANGUAGE plpgsql;
/*
* Creates RANGE partitions for specified relation based on numerical expression
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partitions(
parent_relid REGCLASS,
expression TEXT,
start_value ANYELEMENT,
p_interval ANYELEMENT,
p_count INTEGER DEFAULT NULL,
partition_data BOOLEAN DEFAULT TRUE)
RETURNS INTEGER AS $$
DECLARE
rows_count BIGINT;
max_value start_value%TYPE;
cur_value start_value%TYPE := start_value;
end_value start_value%TYPE;
part_count INTEGER := 0;
i INTEGER;
BEGIN
PERFORM @[email protected]_for_partitioning(parent_relid,
expression,
partition_data);
IF p_count < 0 THEN
RAISE EXCEPTION 'partitions count must not be less than zero';
END IF;
/* Try to determine partitions count if not set */
IF p_count IS NULL THEN
EXECUTE format('SELECT count(*), max(%s) FROM %s', expression, parent_relid)
INTO rows_count, max_value;
IF rows_count = 0 THEN
RAISE EXCEPTION 'cannot determine partitions count for empty table';
END IF;
IF max_value IS NULL THEN
RAISE EXCEPTION 'expression "%" can return NULL values', expression;
END IF;
p_count := 0;
WHILE cur_value <= max_value
LOOP
cur_value := cur_value + p_interval;
p_count := p_count + 1;
END LOOP;
END IF;
/*
* In case when user doesn't want to automatically create partitions
* and specifies partition count as 0 then do not check boundaries
*/
IF p_count != 0 THEN
/* Compute right bound of partitioning through additions */
end_value := start_value;
FOR i IN 1..p_count
LOOP
end_value := end_value + p_interval;
END LOOP;
/* Check boundaries */
PERFORM @[email protected]_boundaries(parent_relid,
expression,
start_value,
end_value);
END IF;
/* Create sequence for child partitions names */
PERFORM @[email protected]_naming_sequence(parent_relid);
/* Insert new entry to pathman config */
PERFORM @[email protected]_to_pathman_config(parent_relid, expression,
p_interval::TEXT);
IF p_count != 0 THEN
part_count := @[email protected]_range_partitions_internal(
parent_relid,
@[email protected]_range_bounds(start_value,
p_interval,
p_count),
NULL,
NULL);
END IF;
/* Relocate data if asked to */
IF partition_data = true THEN
PERFORM @[email protected]_enable_parent(parent_relid, false);
PERFORM @[email protected]_data(parent_relid);
ELSE
PERFORM @[email protected]_enable_parent(parent_relid, true);
END IF;
RETURN p_count;
END
$$ LANGUAGE plpgsql;
/*
* Creates RANGE partitions for specified relation based on bounds array
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partitions(
parent_relid REGCLASS,
expression TEXT,
bounds ANYARRAY,
partition_names TEXT[] DEFAULT NULL,
tablespaces TEXT[] DEFAULT NULL,
partition_data BOOLEAN DEFAULT TRUE)
RETURNS INTEGER AS $$
DECLARE
part_count INTEGER := 0;
BEGIN
IF array_ndims(bounds) > 1 THEN
RAISE EXCEPTION 'Bounds array must be a one dimensional array';
END IF;
IF array_length(bounds, 1) < 2 THEN
RAISE EXCEPTION 'Bounds array must have at least two values';
END IF;
PERFORM @[email protected]_for_partitioning(parent_relid,
expression,
partition_data);
/* Check boundaries */
PERFORM @[email protected]_boundaries(parent_relid,
expression,
bounds[1],
bounds[array_length(bounds, 1)]);
/* Create sequence for child partitions names */
PERFORM @[email protected]_naming_sequence(parent_relid);
/* Insert new entry to pathman config */
PERFORM @[email protected]_to_pathman_config(parent_relid, expression, NULL);
/* Create partitions */
part_count := @[email protected]_range_partitions_internal(parent_relid,
bounds,
partition_names,
tablespaces);
/* Relocate data if asked to */
IF partition_data = true THEN
PERFORM @[email protected]_enable_parent(parent_relid, false);
PERFORM @[email protected]_data(parent_relid);
ELSE
PERFORM @[email protected]_enable_parent(parent_relid, true);
END IF;
RETURN part_count;
END
$$
LANGUAGE plpgsql;
/*
* Detach range partition
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
partition_relid REGCLASS)
RETURNS TEXT AS $$
DECLARE
parent_relid REGCLASS;
part_type INTEGER;
BEGIN
parent_relid := @[email protected]_parent_of_partition(partition_relid);
PERFORM @[email protected]_relname(parent_relid);
PERFORM @[email protected]_relname(partition_relid);
/* Acquire lock on partition's scheme */
PERFORM @[email protected]_part_modification(partition_relid);
/* Acquire lock on parent */
PERFORM @[email protected]_data_modification(parent_relid);
part_type := @[email protected]_partition_type(parent_relid);
/* Check if this is a RANGE partition */
IF part_type != 2 THEN
RAISE EXCEPTION '"%" is not a RANGE partition', partition_relid::TEXT;
END IF;
/* Remove inheritance */
EXECUTE format('ALTER TABLE %s NO INHERIT %s',
partition_relid::TEXT,
parent_relid::TEXT);
/* Remove check constraint */
EXECUTE format('ALTER TABLE %s DROP CONSTRAINT %s',
partition_relid::TEXT,
@[email protected]_check_constraint_name(partition_relid));
RETURN partition_relid;
END
$$ LANGUAGE plpgsql;
/*
* Replace hash partition with another one. It could be useful in case when
* someone wants to attach foreign table as a partition.
*
* lock_parent - should we take an exclusive lock?
*/
CREATE OR REPLACE FUNCTION @[email protected]_hash_partition(
old_partition REGCLASS,
new_partition REGCLASS,
lock_parent BOOL DEFAULT TRUE)
RETURNS REGCLASS AS $$
DECLARE
parent_relid REGCLASS;
old_constr_name TEXT; /* name of old_partition's constraint */
old_constr_def TEXT; /* definition of old_partition's constraint */
rel_persistence CHAR;
p_init_callback REGPROCEDURE;
BEGIN
PERFORM @[email protected]_relname(old_partition);
PERFORM @[email protected]_relname(new_partition);
/* Parent relation */
parent_relid := @[email protected]_parent_of_partition(old_partition);
IF lock_parent THEN
/* Acquire data modification lock (prevent further modifications) */
PERFORM @[email protected]_data_modification(parent_relid);
ELSE
/* Acquire lock on parent */
PERFORM @[email protected]_part_modification(parent_relid);
END IF;
/* Acquire data modification lock (prevent further modifications) */
PERFORM @[email protected]_data_modification(old_partition);
PERFORM @[email protected]_data_modification(new_partition);
/* Ignore temporary tables */
SELECT relpersistence FROM pg_catalog.pg_class
WHERE oid = new_partition INTO rel_persistence;
IF rel_persistence = 't'::CHAR THEN
RAISE EXCEPTION 'temporary table "%" cannot be used as a partition',
new_partition::TEXT;
END IF;
/* Check that new partition has an equal structure as parent does */
IF NOT @[email protected]_tuple_convertible(parent_relid, new_partition) THEN
RAISE EXCEPTION 'partition must have a compatible tuple format';
END IF;
/* Check that table is partitioned */
IF @[email protected]_partition_key(parent_relid) IS NULL THEN
RAISE EXCEPTION 'table "%" is not partitioned', parent_relid::TEXT;
END IF;
/* Fetch name of old_partition's HASH constraint */
old_constr_name = @[email protected]_check_constraint_name(old_partition::REGCLASS);
/* Fetch definition of old_partition's HASH constraint */
SELECT pg_catalog.pg_get_constraintdef(oid) FROM pg_catalog.pg_constraint
WHERE conrelid = old_partition AND quote_ident(conname) = old_constr_name
INTO old_constr_def;
/* Detach old partition */
EXECUTE format('ALTER TABLE %s NO INHERIT %s', old_partition, parent_relid);
EXECUTE format('ALTER TABLE %s DROP CONSTRAINT %s',
old_partition,
old_constr_name);
/* Attach the new one */
EXECUTE format('ALTER TABLE %s INHERIT %s', new_partition, parent_relid);
EXECUTE format('ALTER TABLE %s ADD CONSTRAINT %s %s',
new_partition,
@[email protected]_check_constraint_name(new_partition::REGCLASS),
old_constr_def);
/* Fetch init_callback from 'params' table */
WITH stub_callback(stub) as (values (0))
SELECT init_callback
FROM stub_callback
LEFT JOIN @[email protected]_config_params AS params
ON params.partrel = parent_relid
INTO p_init_callback;
/* Finally invoke init_callback */
PERFORM @[email protected]_on_partition_created_callback(parent_relid,
new_partition,
p_init_callback);
RETURN new_partition;
END
$$ LANGUAGE plpgsql;
/*
* Disable pathman partitioning for specified relation.
*/
CREATE OR REPLACE FUNCTION @[email protected]_pathman_for(
parent_relid REGCLASS)
RETURNS VOID AS $$
BEGIN
PERFORM @[email protected]_relname(parent_relid);
/* Delete rows from both config tables */
DELETE FROM @[email protected]_config WHERE partrel = parent_relid;
DELETE FROM @[email protected]_config_params WHERE partrel = parent_relid;
END
$$ LANGUAGE plpgsql STRICT;
/*
* Drop a naming sequence for partitioned table.
*/
CREATE OR REPLACE FUNCTION @[email protected]_naming_sequence(
parent_relid REGCLASS)
RETURNS VOID AS $$
DECLARE
seq_name TEXT;
BEGIN
seq_name := @[email protected]_sequence_name(parent_relid);
EXECUTE format('DROP SEQUENCE IF EXISTS %s', seq_name);
END
$$ LANGUAGE plpgsql
SET client_min_messages = WARNING; /* mute NOTICE message */
/*
* Drop partitions. If delete_data set to TRUE, partitions
* will be dropped with all the data.
*/
CREATE OR REPLACE FUNCTION @[email protected]_partitions(
parent_relid REGCLASS,
delete_data BOOLEAN DEFAULT FALSE)
RETURNS INTEGER AS $$
DECLARE
child REGCLASS;
rows_count BIGINT;
part_count INTEGER := 0;
rel_kind CHAR;
BEGIN
PERFORM @[email protected]_relname(parent_relid);
/* Acquire data modification lock */
PERFORM @[email protected]_data_modification(parent_relid);
IF NOT EXISTS (SELECT FROM @[email protected]_config
WHERE partrel = parent_relid) THEN
RAISE EXCEPTION 'table "%" has no partitions', parent_relid::TEXT;
END IF;
/* Also drop naming sequence */
PERFORM @[email protected]_naming_sequence(parent_relid);
FOR child IN (SELECT inhrelid::REGCLASS
FROM pg_catalog.pg_inherits
WHERE inhparent::regclass = parent_relid
ORDER BY inhrelid ASC)
LOOP
IF NOT delete_data THEN
EXECUTE format('INSERT INTO %s SELECT * FROM %s',
parent_relid::TEXT,
child::TEXT);
GET DIAGNOSTICS rows_count = ROW_COUNT;
/* Show number of copied rows */
RAISE NOTICE '% rows copied from %', rows_count, child;
END IF;
SELECT relkind FROM pg_catalog.pg_class
WHERE oid = child
INTO rel_kind;
/*
* Determine the kind of child relation. It can be either a regular
* table (r) or a foreign table (f). Depending on relkind we use
* DROP TABLE or DROP FOREIGN TABLE.
*/
IF rel_kind = 'f' THEN
EXECUTE format('DROP FOREIGN TABLE %s', child);
ELSE
EXECUTE format('DROP TABLE %s', child);
END IF;
part_count := part_count + 1;
END LOOP;
/* Finally delete both config entries */
DELETE FROM @[email protected]_config WHERE partrel = parent_relid;
DELETE FROM @[email protected]_config_params WHERE partrel = parent_relid;
RETURN part_count;
END
$$ LANGUAGE plpgsql
SET pg_pathman.enable_partitionfilter = off; /* ensures that PartitionFilter is OFF */
/*
* Drop range partition
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
partition_relid REGCLASS,
delete_data BOOLEAN DEFAULT TRUE)
RETURNS TEXT AS $$
DECLARE
parent_relid REGCLASS;
part_name TEXT;
part_type INTEGER;
v_relkind CHAR;
v_rows BIGINT;
BEGIN
parent_relid := @[email protected]_parent_of_partition(partition_relid);
PERFORM @[email protected]_relname(parent_relid);
PERFORM @[email protected]_relname(partition_relid);
part_name := partition_relid::TEXT; /* save the name to be returned */
part_type := @[email protected]_partition_type(parent_relid);
/* Check if this is a RANGE partition */
IF part_type != 2 THEN
RAISE EXCEPTION '"%" is not a RANGE partition', partition_relid::TEXT;
END IF;
/* Acquire lock on parent's scheme */
PERFORM @[email protected]_part_modification(parent_relid);
IF NOT delete_data THEN
EXECUTE format('INSERT INTO %s SELECT * FROM %s',
parent_relid::TEXT,
partition_relid::TEXT);
GET DIAGNOSTICS v_rows = ROW_COUNT;
/* Show number of copied rows */
RAISE NOTICE '% rows copied from %', v_rows, partition_relid::TEXT;
END IF;
SELECT relkind FROM pg_catalog.pg_class
WHERE oid = partition_relid
INTO v_relkind;
/*
* Determine the kind of child relation. It can be either regular
* table (r) or foreign table (f). Depending on relkind we use
* DROP TABLE or DROP FOREIGN TABLE.
*/
IF v_relkind = 'f' THEN
EXECUTE format('DROP FOREIGN TABLE %s', partition_relid::TEXT);
ELSE
EXECUTE format('DROP TABLE %s', partition_relid::TEXT);
END IF;
RETURN part_name;
END
$$ LANGUAGE plpgsql
SET pg_pathman.enable_partitionfilter = off; /* ensures that PartitionFilter is OFF */
CREATE FUNCTION @[email protected]_version()
RETURNS CSTRING AS 'pg_pathman', 'pathman_version'
LANGUAGE C STRICT;
/*
* Get number of partitions managed by pg_pathman.
*/
CREATE OR REPLACE FUNCTION @[email protected]_number_of_partitions(
parent_relid REGCLASS)
RETURNS INT4 AS
$$
SELECT count(*)::INT4
FROM pg_catalog.pg_inherits
WHERE inhparent = parent_relid;
$$
LANGUAGE sql STRICT;
/*
* Get partitioning key.
*/
DROP FUNCTION @[email protected]_partition_key(REGCLASS);
CREATE FUNCTION @[email protected]_partition_key(
parent_relid REGCLASS)
RETURNS TEXT AS
$$
SELECT expr
FROM @[email protected]_config
WHERE partrel = parent_relid;
$$
LANGUAGE sql STRICT;
/*
* Get partitioning key type.
*/
DROP FUNCTION @[email protected]_partition_key_type(REGCLASS);
CREATE FUNCTION @[email protected]_partition_key_type(
parent_relid REGCLASS)
RETURNS REGTYPE AS 'pg_pathman', 'get_partition_key_type_pl'
LANGUAGE C STRICT;
/*
* Get partitioning type.
*/
DROP FUNCTION @[email protected]_partition_type(REGCLASS);
CREATE OR REPLACE FUNCTION @[email protected]_partition_type(
parent_relid REGCLASS)
RETURNS INT4 AS
$$
SELECT parttype
FROM @[email protected]_config
WHERE partrel = parent_relid;
$$
LANGUAGE sql STRICT;
/*
* Merge RANGE partitions.
*/
DROP FUNCTION @[email protected]_range_partitions(regclass[]);
DROP FUNCTION @[email protected]_range_partitions(regclass, regclass);
CREATE OR REPLACE FUNCTION @[email protected]_range_partitions(
variadic partitions REGCLASS[])
RETURNS REGCLASS AS 'pg_pathman', 'merge_range_partitions'
LANGUAGE C STRICT;
/*
* Prepend new partition.
*/
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
parent_relid REGCLASS,
partition_name TEXT DEFAULT NULL,
tablespace TEXT DEFAULT NULL)
RETURNS TEXT AS $$
DECLARE
part_expr_type REGTYPE;
part_name TEXT;
part_interval TEXT;
BEGIN
PERFORM @[email protected]_relname(parent_relid);
/* Acquire lock on parent's scheme */
PERFORM @[email protected]_part_modification(parent_relid);
part_expr_type := @[email protected]_partition_key_type(parent_relid);
IF NOT @[email protected]_date_type(part_expr_type) AND
NOT @[email protected]_operator_supported(part_expr_type, '-') THEN
RAISE EXCEPTION 'type % does not support ''-'' operator', part_expr_type::REGTYPE;
END IF;
SELECT range_interval
FROM @[email protected]_config
WHERE partrel = parent_relid
INTO part_interval;
EXECUTE
format('SELECT @[email protected]_partition_internal($1, $2, $3, ARRAY[]::%s[], $4, $5)',
@[email protected]_base_type(part_expr_type)::TEXT)
USING
parent_relid,
part_expr_type,
part_interval,
partition_name,
tablespace
INTO
part_name;
RETURN part_name;
END
$$ LANGUAGE plpgsql;
/*
* Show all existing concurrent partitioning tasks.
*/
DROP VIEW @[email protected]_concurrent_part_tasks;
DROP FUNCTION @[email protected]_concurrent_part_tasks();
CREATE FUNCTION @[email protected]_concurrent_part_tasks()
RETURNS TABLE (
userid REGROLE,
pid INT,
dbid OID,
relid REGCLASS,
processed INT8,
status TEXT)
AS 'pg_pathman', 'show_concurrent_part_tasks_internal'
LANGUAGE C STRICT;
CREATE VIEW @[email protected]_concurrent_part_tasks
AS SELECT * FROM @[email protected]_concurrent_part_tasks();
GRANT SELECT ON @[email protected]_concurrent_part_tasks TO PUBLIC;
/*
* Split RANGE partition in two using a pivot.
*/
DROP FUNCTION @[email protected]_range_partition(regclass, anyelement, text, text, OUT anyarray);
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
partition_relid REGCLASS,
split_value ANYELEMENT,
partition_name TEXT DEFAULT NULL,
tablespace TEXT DEFAULT NULL)
RETURNS REGCLASS AS 'pg_pathman', 'split_range_partition'
LANGUAGE C;
DROP FUNCTION @[email protected]_update_trigger_func_name(regclass);
DROP FUNCTION @[email protected]_update_trigger_name(regclass);
DROP FUNCTION @[email protected]_single_update_trigger(regclass, regclass);
DROP FUNCTION @[email protected]_update_triggers(regclass);
DROP FUNCTION @[email protected]_triggers(regclass);
DROP FUNCTION @[email protected]_update_trigger(regclass);
DROP FUNCTION @[email protected]_update_trigger_func() CASCADE;
DROP FUNCTION @[email protected]_pathman_lib_version();