author | Radek Brich <radek.brich@devl.cz> |
Thu, 15 Dec 2011 18:26:04 +0100 | |
changeset 25 | 20a72a9a2d09 |
parent 14 | a900bc629ecc |
child 34 | 98c7809af415 |
permissions | -rwxr-xr-x |
6 | 1 |
#!/usr/bin/env python3.2 |
2 |
# |
|
3 |
# Print differencies between data in two tables of same schema. |
|
4 |
# |
|
5 |
# Requirements: |
|
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
6 |
# * First column of both tables must be numerical primary key. |
6 | 7 |
# * Destination table must contain all columns from source table. |
8 |
# Order is not important. |
|
9 |
# |
|
10 |
||
9
2fcc8ef0b97d
Reorganize again :-) Add setup.py.
Radek Brich <radek.brich@devl.cz>
parents:
7
diff
changeset
|
11 |
from pgtoolkit import pgmanager, pgbrowser, pgdatadiff, toolbase |
6 | 12 |
|
13 |
||
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
14 |
class TableDiffTool(toolbase.SrcDstTool): |
6 | 15 |
def __init__(self): |
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
16 |
toolbase.SrcDstTool.__init__(self, name='tablediff', desc='Table diff.') |
6 | 17 |
|
14
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
18 |
self.parser.add_argument('srctable', metavar='srctable', |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
19 |
type=str, help='Source table name.') |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
20 |
self.parser.add_argument('--dst-table', dest='dsttable', metavar='dsttable', |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
21 |
type=str, default=None, help='Destination table (default=srctable).') |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
22 |
self.parser.add_argument('-s', '--src-schema', dest='srcschema', metavar='srcschema', |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
23 |
type=str, default='public', help='Schema name (default=public).') |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
24 |
self.parser.add_argument('--dst-schema', dest='dstschema', metavar='dstschema', |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
25 |
type=str, default=None, help='Destination schema name (default=srcschema).') |
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
26 |
self.parser.add_argument('--sql', action='store_true', help='Output is SQL script.') |
6 | 27 |
|
28 |
self.init() |
|
29 |
||
30 |
def main(self): |
|
14
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
31 |
srcschema = self.args.srcschema |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
32 |
dstschema = self.args.dstschema if self.args.dstschema else self.args.srcschema |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
33 |
|
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
34 |
srctable = self.args.srctable |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
35 |
dsttable = self.args.dsttable if self.args.dsttable else self.args.srctable |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
36 |
|
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
37 |
dd = pgdatadiff.PgDataDiff(self.pgm.get_conn('src'), self.pgm.get_conn('dst')) |
14
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
38 |
dd.settable1(srctable, srcschema) |
a900bc629ecc
TableDiffTool: add arguments to set different destination schema and table. PgDataDiff: fixes.
Radek Brich <radek.brich@devl.cz>
parents:
9
diff
changeset
|
39 |
dd.settable2(dsttable, dstschema) |
6 | 40 |
|
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
41 |
if self.args.sql: |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
42 |
dd.print_patch() |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
43 |
else: |
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
44 |
dd.print_diff() |
6 | 45 |
|
46 |
||
47 |
tool = TableDiffTool() |
|
48 |
tool.main() |
|
7
685b20d2d3ab
Reorganize directories. PgDataDiff - reworked. PgManager - add fetchone_adapted, fetchall_adapted to cursor.
Radek Brich <radek.brich@devl.cz>
parents:
6
diff
changeset
|
49 |