Current situation:

1. I have fixed all remaining Lintian errors
2. I will report man pages typos to upstream and ask to fix them in next
minor release along with Perl warnings
3. After next minor release will be ready I will update package
4. I have tested if pg_comparator is working with trivial test script

#!/bin/bash

set -e

createdb d
psql d -f /usr/share/postgresql/9.3/contrib/pgc_casts.sql
psql d -f /usr/share/postgresql/9.3/contrib/pgc_checksum.sql
psql d -f /usr/share/postgresql/9.3/contrib/xor_aggregate.sql

psql d -c "CREATE TABLE t1(id serial, x character varying);"
psql d -c "CREATE TABLE t2(id serial, x character varying);"
psql d -c "INSERT INTO t1 (x) values ('aaa');"
psql d -c "INSERT INTO t1 (x) values ('bbb');"
psql d -c "INSERT INTO t1 (x) values ('ccc');"

pg_comparator --max-ratio=2.0  --transaction --verbose -S --do-it
localhost/d/t1?id localhost/d/t2?id

psql d -c "DELETE FROM t1 WHERE x = 'aaa';"
psql d -c "INSERT INTO t1 (x) values ('ddd');"

pg_comparator --max-ratio=2.0  --transaction --verbose -S --do-it
localhost/d/t1?id localhost/d/t2?id



Ivan Minčík
ivan.min...@gmail.com  GPG: 0x79529A1E
http://imincik.github.io/0x79529A1E.key
ivan.min...@gista.sk     GPG: 0xD714B02C
http://imincik.github.io/0xD714B02C.key
_______________________________________________
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Reply via email to