Re: Issue related with patitioned table:How can I quickly determine which child table my record is in,given a specific primary key value?

From: James(王旭) <wangxu(at)gu360(dot)com>
To: Luca Ferrari <fluca1978(at)gmail(dot)com>
Cc: pgsql-general <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: Issue related with patitioned table:How can I quickly determine which child table my record is in,given a specific primary key value?
Date: 2019-07-17 10:59:35
Message-ID: tencent_10CD0FFC540E29992BA299BA@qq.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Luca,

Yes, that's the answer,It really works!
Thanks again Luca, you actually saved my day!

James.
------------------ Original ------------------
From: "Luca Ferrari"<fluca1978(at)gmail(dot)com>;
Date: Wed, Jul 17, 2019 06:49 PM
To: "James(王旭)"<wangxu(at)gu360(dot)com>;
Cc: "pgsql-general"<pgsql-general(at)lists(dot)postgresql(dot)org>;
Subject: Re: Issue related with patitioned table:How can I quickly determine which child table my record is in,given a specific primary key value?

On Wed, Jul 17, 2019 at 11:41 AM James(王旭) <wangxu(at)gu360(dot)com> wrote:
> From these results I can tell the route to a table is not even related with the mod function, right?
> So It's hard for me to do any kind of guesses...

Because it is the wrong function.
According to \d+ on a child table and partbounds.c the function called
is satisfied_hash_partition:

testdb=# select satisfies_hash_partition('153221'::oid, 3, 0, 6521);
satisfies_hash_partition
--------------------------
t
(1 row)

testdb=# select satisfies_hash_partition('153221'::oid, 3, 1, 6521);
satisfies_hash_partition
--------------------------
f
(1 row)

The first argument is the table id (partitioned one, the root), the
second is the reminder, third is the partition table, last is your
value.
Therefore I suspect you have to iterate on your partition numbers from
0 to x to see if a value fits in that partition, and then extract the
table name from that.

Hope its clear.

Luca

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Rory Campbell-Lange 2019-07-17 11:34:41 Re: How to run a task continuously in the background
Previous Message Luca Ferrari 2019-07-17 10:49:21 Re: Issue related with patitioned table:How can I quickly determine which child table my record is in,given a specific primary key value?