パーティション間で行を分散するために Postgres (バージョン 13.2) で使用されるカスタム ハッシュ関数を作成したいと考えています。問題は、現在のソリューションでは Postgres がパーティションのプルーニングを使用していないことです。これが私のコードです:
-- dummy hash function
CREATE OR REPLACE FUNCTION partition_custom_bigint_hash(value BIGINT, seed
BIGINT)
RETURNS BIGINT AS $$
SELECT value;
$$ LANGUAGE SQL IMMUTABLE PARALLEL SAFE;
-- operator
CREATE OPERATOR CLASS partition_custom_bigint_hash_op
FOR TYPE int8
USING hash AS
OPERATOR 1 =,
FUNCTION 2 partition_custom_bigint_hash(BIGINT, BIGINT);
-- table partitioned by hash with custom operator
CREATE TABLE sample(part_id BIGINT) PARTITION BY hash(part_id partition_custom_bigint_hash_op);
CREATE TABLE sample_part_1 PARTITION OF SAMPLE FOR VALUES WITH (modulus 3, remainder 0);
CREATE TABLE sample_part_2 PARTITION OF SAMPLE FOR VALUES WITH (modulus 3, remainder 1);
CREATE TABLE sample_part_3 PARTITION OF SAMPLE FOR VALUES WITH (modulus 3, remainder 2);
ここで、パーティションのプルーニングが有効になっており、正しく機能していることを確認します。
SHOW enable_partition_pruning;
-- enable_partition_pruning
-- --------------------------
-- on
EXPLAIN * FROM sample WHERE part_id = 1::BIGINT;
-- QUERY PLAN
-- ----------------------------------------------------------------------
-- Seq Scan on sample_part_1 sample (cost=0.00..38.25 rows=11 width=8)
-- Filter: (part_id = '1'::bigint)
-- (2 rows)
したがって、条件を使用すると問題part_id=1::BIGINT
なく動作しますが、BIGINT へのキャストをスキップすると、次のようになります。
EXPLAIN SELECT * FROM sample WHERE part_id = 1;
-- QUERY PLAN
-- ------------------------------------------------------------------------------
-- Append (cost=0.00..101.36 rows=33 width=8)
-- -> Seq Scan on sample_part_1 sample_1 (cost=0.00..33.73 rows=11 width=8)
-- Filter: (part_id = 1)
-- -> Seq Scan on sample_part_2 sample_2 (cost=0.00..33.73 rows=11 width=8)
-- Filter: (part_id = 1)
-- -> Seq Scan on sample_part_3 sample_3 (cost=0.00..33.73 rows=11 width=8)
-- Filter: (part_id = 1)
part_id=1
質問: パーティションのプルーニングを条件との両方で機能させるには、何を変更する必要がありpart_id=1::BIGINT
ますか?