summaryrefslogtreecommitdiff
path: root/python/londiste/compare.py
diff options
context:
space:
mode:
authorMarko Kreen2013-01-14 19:04:00 +0000
committerMarko Kreen2013-01-14 19:04:00 +0000
commita81cb763a3a7d12337808c0b9e501af97c9c8b53 (patch)
tree14defbd2e7be8a115238e6870140850a46d03908 /python/londiste/compare.py
parent560985a413cf4834d2ec1aab4e07d2ab76bcc53e (diff)
parent2cf75dc61f32ec06514d7b801637de6d5cea395d (diff)
Merge remote-tracking branch 'petr/master'
Diffstat (limited to 'python/londiste/compare.py')
-rw-r--r--python/londiste/compare.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/python/londiste/compare.py b/python/londiste/compare.py
index ff304f0a..a92ae513 100644
--- a/python/londiste/compare.py
+++ b/python/londiste/compare.py
@@ -35,9 +35,14 @@ class Comparator(Syncer):
# get sane query
v1 = src_db.server_version
v2 = dst_db.server_version
- if (v1 < 80400 or v2 < 80400) and v1 != v2:
+ if v1 < 80300 or v2 < 80300:
+ # 8.2- does not have record to text and text to bit casts, so we need to use a bit of evil hackery
+ q = "select count(1) as cnt, sum(bit_in(textout('x'||substr(md5(textin(record_out(_COLS_))),1,16)), 0, 64)::bigint) as chksum from only _TABLE_"
+ elif (v1 < 80400 or v2 < 80400) and v1 != v2:
+ # hashtext changed in 8.4 so we need to use md5 in case there is 8.3 vs 8.4+ comparison
q = "select count(1) as cnt, sum(('x'||substr(md5(_COLS_::text),1,16))::bit(64)::bigint) as chksum from only _TABLE_"
else:
+ # this way is much faster than the above
q = "select count(1) as cnt, sum(hashtext(_COLS_::text)::bigint) as chksum from only _TABLE_"
q = self.cf.get('compare_sql', q)