equal
deleted
inserted
replaced
6 # * First column of both tables must be numerical primary key. |
6 # * First column of both tables must be numerical primary key. |
7 # * Destination table must contain all columns from source table. |
7 # * Destination table must contain all columns from source table. |
8 # Order is not important. |
8 # Order is not important. |
9 # |
9 # |
10 |
10 |
11 from tools import pgmanager, pgbrowser, pgdatadiff, toolbase |
11 from pgtoolkit import pgmanager, pgbrowser, pgdatadiff, toolbase |
12 |
12 |
13 |
13 |
14 class TableDiffTool(toolbase.SrcDstTool): |
14 class TableDiffTool(toolbase.SrcDstTool): |
15 def __init__(self): |
15 def __init__(self): |
16 toolbase.SrcDstTool.__init__(self, name='tablediff', desc='Table diff.') |
16 toolbase.SrcDstTool.__init__(self, name='tablediff', desc='Table diff.') |