Thread: pgsql-server/src/bin/pg_dump pg_dump.c

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

From
wieck@svr1.postgresql.org (Jan Wieck)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    wieck@svr1.postgresql.org    03/09/27 12:34:06

Modified files:
    src/bin/pg_dump: pg_dump.c

Log message:
    Changed the logic when a CAST is dumped according to discussion
    on pgsql-hackers.

    A cast is included in the dump output if any of the objects does
    not belong to a system namespace and all of the non-system namespace
    objects belong to dumped namespaces. System namespace is defined
    as nspname begins with "pg_".

    Jan