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

Started by Tom Lanealmost 24 years ago3 messagescomitters
Jump to latest
#1Tom Lane
tgl@sss.pgh.pa.us

CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: tgl@postgresql.org 02/08/16 17:03:42

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

Log message:
Code review for patch to dump primary and unique constraints as
constraints, rather than as CREATE INDEX commands.

#2Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#1)
Re: pgsql-server/src/bin/pg_dump pg_dump.c

Just checking, but these happen after the data is loaded, for
performance, right?

---------------------------------------------------------------------------

Tom Lane wrote:

CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: tgl@postgresql.org 02/08/16 17:03:42

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

Log message:
Code review for patch to dump primary and unique constraints as
constraints, rather than as CREATE INDEX commands.

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#3Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#2)
Re: pgsql-server/src/bin/pg_dump pg_dump.c

Bruce Momjian <pgman@candle.pha.pa.us> writes:

Just checking, but these happen after the data is loaded, for
performance, right?

Yeah, they're dumped at the same place we'd formerly have dumped CREATE
INDEX commands.

regards, tom lane