tablediff.py
changeset 9 2fcc8ef0b97d
parent 7 685b20d2d3ab
child 14 a900bc629ecc
equal deleted inserted replaced
8:2911935c524d 9:2fcc8ef0b97d
     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.')