forked from postgrespro/pg_pathman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg_pathman--1.3--1.4.sql
1504 lines (1208 loc) · 42 KB
/
pg_pathman--1.3--1.4.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
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* ------------------------------------------------------------------------
*
* pg_pathman--1.3--1.4.sql
* Migration scripts to version 1.4
*
* Copyright (c) 2015-2017, Postgres Professional
*
* ------------------------------------------------------------------------
*/
/* ------------------------------------------------------------------------
* Alter config tables
* ----------------------------------------------------------------------*/
ALTER TABLE @[email protected]_config RENAME COLUMN attname TO expr;
ALTER TABLE @[email protected]_config ADD COLUMN cooked_expr TEXT;
DROP TRIGGER pathman_config_params_trigger ON @[email protected]_config_params;
CREATE TRIGGER pathman_config_params_trigger
AFTER INSERT OR UPDATE OR DELETE ON @[email protected]_config_params
FOR EACH ROW EXECUTE PROCEDURE @[email protected]_config_params_trigger_func();
DROP FUNCTION @[email protected]_interval_value(REGCLASS, TEXT, INTEGER, TEXT) CASCADE;
CREATE OR REPLACE FUNCTION @[email protected]_interval_value(
partrel REGCLASS,
expr TEXT,
parttype INTEGER,
range_interval TEXT,
cooked_expr TEXT)
RETURNS BOOL AS 'pg_pathman', 'validate_interval_value'
LANGUAGE C;
ALTER TABLE @[email protected]_config
ADD CONSTRAINT pathman_config_interval_check
CHECK (@[email protected]_interval_value(partrel,
expr,
parttype,
range_interval,
cooked_expr));
DO $$
DECLARE
v_rec RECORD;
BEGIN
FOR v_rec IN (SELECT conrelid::regclass AS t, conname, regexp_replace(conname, '\d+_check', 'check') as new_conname
FROM pg_constraint
WHERE conname ~ 'pathman_.*_\d+_\d+_check')
LOOP
EXECUTE format('ALTER TABLE %s RENAME CONSTRAINT %s TO %s',
v_rec.t, v_rec.conname, v_rec.new_conname);
END LOOP;
END
$$ LANGUAGE plpgsql;
DROP VIEW pathman_partition_list;
DROP FUNCTION @[email protected]_partition_list();
CREATE OR REPLACE FUNCTION @[email protected]_partition_list()
RETURNS TABLE (
parent REGCLASS,
partition REGCLASS,
parttype INT4,
expr TEXT,
range_min TEXT,
range_max TEXT)
AS 'pg_pathman', 'show_partition_list_internal'
LANGUAGE C STRICT;
CREATE OR REPLACE VIEW @[email protected]_partition_list
AS SELECT * FROM @[email protected]_partition_list();
GRANT SELECT ON @[email protected]_partition_list TO PUBLIC;
/* ------------------------------------------------------------------------
* Drop irrelevant objects
* ----------------------------------------------------------------------*/
DROP FUNCTION @extschema@._partition_data_concurrent(REGCLASS, ANYELEMENT, ANYELEMENT, INT, OUT BIGINT);
DROP FUNCTION @[email protected]_pathman_for(REGCLASS);
DROP FUNCTION @[email protected]_relation_checks(REGCLASS, TEXT);
DROP FUNCTION @[email protected]_relations_equality(OID, OID);
DROP FUNCTION @[email protected]_partitions(REGCLASS, BOOLEAN);
DROP FUNCTION @[email protected]_create_partitions(REGCLASS);
DROP FUNCTION @[email protected]_update_partitions(REGCLASS);
DROP FUNCTION @[email protected]_remove_partitions(REGCLASS);
DROP FUNCTION @[email protected]_attribute_nullable(REGCLASS, TEXT);
DROP FUNCTION @[email protected]_check_constraint_name(REGCLASS, TEXT);
DROP FUNCTION @[email protected]_check_constraint_name(REGCLASS, INT2);
DROP FUNCTION @[email protected]_to_pathman_config(REGCLASS, TEXT, TEXT);
DROP FUNCTION @[email protected]_partitioned_relation(REGCLASS);
DROP FUNCTION @[email protected]_relation_modification(REGCLASS);
DROP FUNCTION @[email protected]_hash_partitions(REGCLASS, TEXT, INTEGER, BOOLEAN, TEXT[], TEXT[]);
DROP FUNCTION @[email protected]_hash_update_trigger(REGCLASS);
DROP FUNCTION @[email protected]_type_hash_func(REGTYPE);
DROP FUNCTION @[email protected]_hash_condition(REGTYPE, TEXT, INT4, INT4);
DROP FUNCTION @[email protected]_or_replace_sequence(REGCLASS, OUT TEXT);
DROP FUNCTION @[email protected]_boundaries(REGCLASS, TEXT, ANYELEMENT, ANYELEMENT);
DROP FUNCTION @[email protected]_range_partitions(REGCLASS, TEXT, ANYELEMENT, INTERVAL, INTEGER, BOOLEAN);
DROP FUNCTION @[email protected]_range_partitions(REGCLASS, TEXT, ANYELEMENT, ANYELEMENT, INTEGER, BOOLEAN);
DROP FUNCTION @[email protected]_partitions_from_range(REGCLASS, TEXT, ANYELEMENT, ANYELEMENT, ANYELEMENT, BOOLEAN);
DROP FUNCTION @[email protected]_partitions_from_range(REGCLASS, TEXT, ANYELEMENT, ANYELEMENT, INTERVAL, BOOLEAN);
DROP FUNCTION @[email protected]_range_update_trigger(REGCLASS);
DROP FUNCTION @[email protected]_range_condition(REGCLASS, TEXT, ANYELEMENT, ANYELEMENT);
DROP FUNCTION @[email protected]_or_create_range_partition(REGCLASS, ANYELEMENT);
/* ------------------------------------------------------------------------
* Alter functions' modifiers
* ----------------------------------------------------------------------*/
ALTER FUNCTION @[email protected]_sequence_name(REGCLASS) STRICT;
/* ------------------------------------------------------------------------
* (Re)create functions
* ----------------------------------------------------------------------*/
CREATE OR REPLACE FUNCTION @[email protected]_cache_stats()
RETURNS TABLE (
context TEXT,
size INT8,
used INT8,
entries INT8)
AS 'pg_pathman', 'show_cache_stats_internal'
LANGUAGE C STRICT;
CREATE OR REPLACE VIEW @[email protected]_cache_stats
AS SELECT * FROM @[email protected]_cache_stats();
CREATE OR REPLACE FUNCTION @extschema@._partition_data_concurrent(
relation REGCLASS,
p_min ANYELEMENT DEFAULT NULL::text,
p_max ANYELEMENT DEFAULT NULL::text,
p_limit INT DEFAULT NULL,
OUT p_total BIGINT)
AS $$
DECLARE
part_expr TEXT;
v_limit_clause TEXT := '';
v_where_clause TEXT := '';
ctids TID[];
BEGIN
part_expr := @[email protected]_partition_key(relation);
p_total := 0;
/* Format LIMIT clause if needed */
IF NOT p_limit IS NULL THEN
v_limit_clause := format('LIMIT %s', p_limit);
END IF;
/* Format WHERE clause if needed */
IF NOT p_min IS NULL THEN
v_where_clause := format('%1$s >= $1', part_expr);
END IF;
IF NOT p_max IS NULL THEN
IF NOT p_min IS NULL THEN
v_where_clause := v_where_clause || ' AND ';
END IF;
v_where_clause := v_where_clause || format('%1$s < $2', part_expr);
END IF;
IF v_where_clause != '' THEN
v_where_clause := 'WHERE ' || v_where_clause;
END IF;
/* Lock rows and copy data */
RAISE NOTICE 'Copying data to partitions...';
EXECUTE format('SELECT array(SELECT ctid FROM ONLY %1$s %2$s %3$s FOR UPDATE NOWAIT)',
relation, v_where_clause, v_limit_clause)
USING p_min, p_max
INTO ctids;
EXECUTE format('WITH data AS (
DELETE FROM ONLY %1$s WHERE ctid = ANY($1) RETURNING *)
INSERT INTO %1$s SELECT * FROM data',
relation)
USING ctids;
/* Get number of inserted rows */
GET DIAGNOSTICS p_total = ROW_COUNT;
RETURN;
END
$$ LANGUAGE plpgsql
SET pg_pathman.enable_partitionfilter = on; /* ensures that PartitionFilter is ON */
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;
/* Drop triggers on update */
PERFORM @[email protected]_triggers(parent_relid);
END
$$ LANGUAGE plpgsql STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_for_partitioning(
parent_relid REGCLASS,
expression TEXT,
partition_data BOOLEAN)
RETURNS VOID AS $$
DECLARE
constr_name TEXT;
is_referenced BOOLEAN;
rel_persistence CHAR;
BEGIN
PERFORM @[email protected]_relname(parent_relid);
PERFORM @[email protected]_expression(parent_relid, expression);
IF partition_data = true THEN
/* Acquire data modification lock */
PERFORM @[email protected]_data_modification(parent_relid);
ELSE
/* Acquire lock on parent */
PERFORM @[email protected]_part_modification(parent_relid);
END IF;
/* Ignore temporary tables */
SELECT relpersistence FROM pg_catalog.pg_class
WHERE oid = parent_relid INTO rel_persistence;
IF rel_persistence = 't'::CHAR THEN
RAISE EXCEPTION 'temporary table "%" cannot be partitioned', parent_relid;
END IF;
IF EXISTS (SELECT * FROM @[email protected]_config
WHERE partrel = parent_relid) THEN
RAISE EXCEPTION 'table "%" has already been partitioned', parent_relid;
END IF;
/* Check if there are foreign keys that reference the relation */
FOR constr_name IN (SELECT conname FROM pg_catalog.pg_constraint
WHERE confrelid = parent_relid::REGCLASS::OID)
LOOP
is_referenced := TRUE;
RAISE WARNING 'foreign key "%" references table "%"', constr_name, parent_relid;
END LOOP;
IF is_referenced THEN
RAISE EXCEPTION 'table "%" is referenced from other tables', parent_relid;
END IF;
END
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION @[email protected]_ddl_trigger_func()
RETURNS event_trigger AS $$
DECLARE
obj RECORD;
pg_class_oid OID;
relids REGCLASS[];
BEGIN
pg_class_oid = 'pg_catalog.pg_class'::regclass;
/* Find relids to remove from config */
SELECT array_agg(cfg.partrel) INTO relids
FROM pg_event_trigger_dropped_objects() AS events
JOIN @[email protected]_config AS cfg ON cfg.partrel::oid = events.objid
WHERE events.classid = pg_class_oid AND events.objsubid = 0;
/* Cleanup pathman_config */
DELETE FROM @[email protected]_config WHERE partrel = ANY(relids);
/* Cleanup params table too */
DELETE FROM @[email protected]_config_params WHERE partrel = ANY(relids);
END
$$ LANGUAGE plpgsql;
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 */
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 */
CREATE OR REPLACE FUNCTION @[email protected]_triggers(
parent_relid REGCLASS)
RETURNS VOID AS $$
DECLARE
triggername TEXT;
relation OID;
BEGIN
triggername := @[email protected]_update_trigger_name(parent_relid);
/* Drop trigger for each partition if exists */
FOR relation IN (SELECT pg_catalog.pg_inherits.inhrelid
FROM pg_catalog.pg_inherits
JOIN pg_catalog.pg_trigger ON inhrelid = tgrelid
WHERE inhparent = parent_relid AND tgname = triggername)
LOOP
EXECUTE format('DROP TRIGGER IF EXISTS %s ON %s',
triggername,
relation::REGCLASS);
END LOOP;
/* Drop trigger on parent */
IF EXISTS (SELECT * FROM pg_catalog.pg_trigger
WHERE tgname = triggername AND tgrelid = parent_relid)
THEN
EXECUTE format('DROP TRIGGER IF EXISTS %s ON %s',
triggername,
parent_relid::TEXT);
END IF;
END
$$ LANGUAGE plpgsql STRICT;
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;
/* First, drop all triggers */
PERFORM @[email protected]_triggers(parent_relid);
/* 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 */
CREATE OR REPLACE FUNCTION @[email protected]_foreign_keys(
parent_relid REGCLASS,
partition_relid REGCLASS)
RETURNS VOID AS $$
DECLARE
conid OID;
BEGIN
PERFORM @[email protected]_relname(parent_relid);
PERFORM @[email protected]_relname(partition_relid);
FOR conid IN (SELECT oid FROM pg_catalog.pg_constraint
WHERE conrelid = parent_relid AND contype = 'f')
LOOP
EXECUTE format('ALTER TABLE %s ADD %s',
partition_relid::TEXT,
pg_catalog.pg_get_constraintdef(conid));
END LOOP;
END
$$ LANGUAGE plpgsql STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_partition_key(
relid REGCLASS)
RETURNS TEXT AS
$$
SELECT expr FROM @[email protected]_config WHERE partrel = relid;
$$
LANGUAGE sql STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_partition_type(
relid REGCLASS)
RETURNS INT4 AS
$$
SELECT parttype FROM @[email protected]_config WHERE partrel = relid;
$$
LANGUAGE sql STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_update_trigger_func()
RETURNS TRIGGER AS 'pg_pathman', 'pathman_update_trigger_func'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_update_triggers(
parent_relid REGCLASS)
RETURNS VOID AS 'pg_pathman', 'create_update_triggers'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_single_update_trigger(
parent_relid REGCLASS,
partition_relid REGCLASS)
RETURNS VOID AS 'pg_pathman', 'create_single_update_trigger'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_update_trigger(
parent_relid REGCLASS)
RETURNS BOOL AS 'pg_pathman', 'has_update_trigger'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_expression(
relid REGCLASS,
expression TEXT)
RETURNS VOID AS 'pg_pathman', 'validate_expression'
LANGUAGE C;
CREATE OR REPLACE FUNCTION @[email protected]_operator_supported(
type_oid REGTYPE,
opname TEXT)
RETURNS BOOLEAN AS 'pg_pathman', 'is_operator_supported'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_tuple_convertible(
relation1 REGCLASS,
relation2 REGCLASS)
RETURNS BOOL AS 'pg_pathman', 'is_tuple_convertible'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_check_constraint_name(
partition_relid REGCLASS)
RETURNS TEXT AS 'pg_pathman', 'build_check_constraint_name'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_to_pathman_config(
parent_relid REGCLASS,
expression TEXT,
range_interval TEXT)
RETURNS BOOLEAN AS 'pg_pathman', 'add_to_pathman_config'
LANGUAGE C;
CREATE OR REPLACE FUNCTION @[email protected]_to_pathman_config(
parent_relid REGCLASS,
expression TEXT)
RETURNS BOOLEAN AS 'pg_pathman', 'add_to_pathman_config'
LANGUAGE C;
CREATE OR REPLACE FUNCTION @[email protected]_part_modification(
parent_relid REGCLASS)
RETURNS VOID AS 'pg_pathman', 'prevent_part_modification'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_data_modification(
parent_relid REGCLASS)
RETURNS VOID AS 'pg_pathman', 'prevent_data_modification'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_hash_partitions(
parent_relid REGCLASS,
expression TEXT,
partitions_count INT4,
partition_data BOOLEAN DEFAULT TRUE,
partition_names TEXT[] DEFAULT NULL,
tablespaces TEXT[] DEFAULT NULL)
RETURNS INTEGER AS $$
BEGIN
expression := lower(expression);
PERFORM @[email protected]_for_partitioning(parent_relid,
expression,
partition_data);
/* Insert new entry to pathman config */
PERFORM @[email protected]_to_pathman_config(parent_relid, expression);
/* Create partitions */
PERFORM @[email protected]_hash_partitions_internal(parent_relid,
expression,
partitions_count,
partition_names,
tablespaces);
/* Copy data */
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 partitions_count;
END
$$ LANGUAGE plpgsql
SET client_min_messages = WARNING;
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 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;
CREATE OR REPLACE FUNCTION @[email protected]_hash_condition(
attribute_type REGTYPE,
attribute TEXT,
partitions_count INT4,
partition_index INT4)
RETURNS TEXT AS 'pg_pathman', 'build_hash_condition'
LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION @[email protected]_boundaries(
parent_relid REGCLASS,
expression TEXT,
start_value ANYELEMENT,
end_value ANYELEMENT)
RETURNS VOID AS $$
DECLARE
min_value start_value%TYPE;
max_value start_value%TYPE;
rows_count BIGINT;
BEGIN
/* Get min and max values */
EXECUTE format('SELECT count(*), min(%1$s), max(%1$s)
FROM %2$s WHERE NOT %1$s IS NULL',
expression, parent_relid::TEXT)
INTO rows_count, min_value, max_value;
/* Check if column has NULL values */
IF rows_count > 0 AND (min_value IS NULL OR max_value IS NULL) THEN
RAISE EXCEPTION 'expression "%" returns NULL values', expression;
END IF;
/* Check lower boundary */
IF start_value > min_value THEN
RAISE EXCEPTION 'start value is greater than min value of "%"', expression;
END IF;
/* Check upper boundary */
IF end_value <= max_value THEN
RAISE EXCEPTION 'not enough partitions to fit all values of "%"', expression;
END IF;
END
$$ LANGUAGE plpgsql;
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;
value_type REGTYPE;
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;
value_type := @[email protected]_base_type(pg_typeof(start_value));
/*
* 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 */
EXECUTE
format('SELECT @[email protected]_boundaries(''%s'', $1, ''%s'', ''%s''::%s)',
parent_relid,
start_value,
end_value,
value_type::TEXT)
USING
expression;
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;
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;
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[0],
bounds[array_length(bounds, 1) - 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;
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
partition_relid REGCLASS,
split_value ANYELEMENT,
partition_name TEXT DEFAULT NULL,
tablespace TEXT DEFAULT NULL,
OUT p_range ANYARRAY)
RETURNS ANYARRAY AS $$
DECLARE
parent_relid REGCLASS;
part_type INTEGER;
part_expr TEXT;
part_expr_type REGTYPE;
check_name TEXT;
check_cond TEXT;
new_partition TEXT;
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 parent */
PERFORM @[email protected]_part_modification(parent_relid);
/* Acquire data modification lock (prevent further modifications) */
PERFORM @[email protected]_data_modification(partition_relid);
part_expr_type = @[email protected]_partition_key_type(parent_relid);
part_expr := @[email protected]_partition_key(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;
/* Get partition values range */
EXECUTE format('SELECT @[email protected]_part_range($1, NULL::%s)',