Обсуждение: pgsql-server/src/bin/pg_dump common.c pg_backu ...

Поиск
Список
Период
Сортировка

pgsql-server/src/bin/pg_dump common.c pg_backu ...

От
tgl@svr1.postgresql.org (Tom Lane)
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@svr1.postgresql.org    04/03/03 17:28:55

Modified files:
    src/bin/pg_dump: common.c pg_backup_archiver.c
                     pg_backup_custom.c pg_backup_db.c
                     pg_backup_db.h pg_backup_files.c
                     pg_backup_tar.c pg_dump.c pg_dump.h
                     pg_dump_sort.c

Log message:
    Modify pg_dump so that the preferred dump order is by name within
    object types, rather than by OID.  This should help ensure consistent
    dump output from databases that are logically the same but have different
    histories, per recent discussion about 'diffing' databases.  The patch
    is bulky because of renaming of fields, but not very complicated.
    Also, do some tweaking to cause BLOB restoration to be done in a better
    order, and clean up pg_restore's textual output to exactly match pg_dump.