Adding WHERE clause to pg_dump - Mailing list pgsql-hackers

From Simon Riggs
Subject Adding WHERE clause to pg_dump
Date
Msg-id 1216999182.3894.930.camel@ebony.2ndQuadrant
Whole thread Raw
Responses Re: Adding WHERE clause to pg_dump  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Attached patch implements WHERE clauses for pg_dump.

This is useful for producing data samples of a database

e.g. pg_dump -w "ctid < '(1000,1)' or random() < 0.1"

and can also be used for taking incremental backups, if data columns
exist to make a partial dump sensible.

e.g. pg_dump -w "last_update_timestamp > ...."

Columns such as this are very common because of optimistic locking
techniques in many databases.

This is designed to be used in conjunction with the TOM utility, and the
forthcoming patch to implement stats hooks. Taken together these
features will allow the ability to take a cut-down database environment
for testing, yet with statistics matching the main production database.

It was easier to write it and then discuss, since I needed to check the
feasibility of the idea before presenting it.

--
 Simon Riggs           www.2ndQuadrant.com
 PostgreSQL Training, Services and Support

Attachment

pgsql-hackers by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: Do we really want to migrate plproxy and citext into PG core distribution?
Next
From: "Ryan Bradetich"
Date:
Subject: Re: [RFC] Unsigned integer support.