~ubuntu-branches/ubuntu/karmic/apgdiff/karmic

« back to all changes in this revision

Viewing changes to debian/apgdiff.1.txt

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2008-09-09 15:42:54 UTC
  • Revision ID: james.westby@ubuntu.com-20080909154254-87l69ipek6zb4p8c
Tags: 1.2-1
InitialĀ release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
APGDIFF(1)
 
2
==========
 
3
Christoph Berg <myon@debian.org>
 
4
 
 
5
NAME
 
6
----
 
7
apgdiff - Another PostgreSQL Diff Tool
 
8
 
 
9
SYNOPSIS
 
10
--------
 
11
Usage: apgdiff [options] <old_dump> <new_dump>
 
12
 
 
13
DESCRIPTION
 
14
-----------
 
15
Another PostgreSQL Diff Tool is a simple PostgreSQL diff tool that is useful
 
16
for schema upgrades. The tool compares two schema dump files and creates
 
17
an SQL output file that is (after some hand-made modifications) suitable for
 
18
upgrades of old schemata.
 
19
 
 
20
OPTIONS
 
21
-------
 
22
--version:-
 
23
                              displays apgdiff version
 
24
 
 
25
--add-defaults:-
 
26
                              adds DEFAULT ... in case new column NOT NULL constraint but
 
27
                              no default value (the default value is dropped later)"
 
28
 
 
29
--add-transaction:-
 
30
                              adds START TRANSACTION and COMMIT TRANSACTION
 
31
                              to the generated diff file
 
32
 
 
33
--ignore-function-whitespace:-
 
34
                              ignores multiple spaces and new lines when comparing content
 
35
                              of functions - WARNING: this may cause functions to appear
 
36
                              to be same in cases they are not, so use this feature only
 
37
                              if you know what you are doing
 
38
 
 
39
--ignore-start-with:-
 
40
                              ignores START WITH modifications on SEQUENCEs (default is
 
41
                              not to ignore these changes)
 
42
 
 
43
--in-charset-name <charset>:-
 
44
                              charset that should be used for reading input files (standard
 
45
                              charset name supported by Java)
 
46
 
 
47
--out-charset-name <charset>:-
 
48
                              charset that should be used for writing output (standard
 
49
                              charset name supported by Java)
 
50
 
 
51
--quote-names:-
 
52
                              adds quotes to names
 
53
 
 
54
AUTHOR
 
55
------
 
56
 
 
57
Miroslav Å ulc <miroslav.sulc@startnet.cz>. This manual page was written by
 
58
Christoph Berg <myon@debian.org> for the Debian system (but may be used by
 
59
others).