In PG I have a table which is using partition by hash (*text*, *bigint*)
looking at a previous answer the functions used for hashing can be seen however I'm unsure which function is used to build combined hashes?
Is it treating the partition keys as a record and using hash_record
?
Ultimately I want to know this to rebuild the hashing function in Java to optimise reads and writes to specific partitions.