Note that there are some explanatory texts on larger screens.

plurals
  1. POHow can I get a hash of an entire table in postgresql?
    text
    copied!<p>I would like a fairly efficient way to condense an entire table to a hash value.</p> <p>I have some tools that generate entire data tables, which can then be used to generate further tables, and so on. I'm trying to implement a simplistic build system to coordinate build runs and avoid repeating work. I want to be able to record hashes of the input tables so that I can later check whether they have changed. Building a table takes minutes or hours, so spending several seconds building hashes is acceptable.</p> <p>A hack I have used is to just pipe the output of pg_dump to md5sum, but that requires transferring the entire table dump over the network to hash it on the local box. Ideally I'd like to produce the hash on the database server.</p> <p><a href="https://stackoverflow.com/questions/3878499/finding-the-hash-value-of-a-row-in-postgresql">Finding the hash value of a row in postgresql</a> gives me a way to calculate a hash for a row at a time, which could then be combined somehow.</p> <p>Any tips would be greatly appreciated.</p> <p><strong>Edit to post what I ended up with:</strong> tinychen's answer didn't work for me directly, because I couldn't use 'plpgsql' apparently. When I implemented the function in SQL instead, it worked, but was very inefficient for large tables. So instead of concatenating all the row hashes and then hashing that, I switched to using a "rolling hash", where the previous hash is concatenated with the text representation of a row and then that is hashed to produce the next hash. This was much better; apparently running md5 on short strings millions of extra times is better than concatenating short strings millions of times.</p> <pre><code>create function zz_concat(text, text) returns text as 'select md5($1 || $2);' language 'sql'; create aggregate zz_hashagg(text) ( sfunc = zz_concat, stype = text, initcond = ''); </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload