diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-09-07 19:12:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-09-07 19:12:57 +0000 |
commit | 8818f3793e88e183e8eaff21fbb6762e6e73f663 (patch) | |
tree | 05870be73d2452f83cbe654793cb5ed10e3b50f9 | |
parent | e6a310b281cdca002ba02d419d4c361f90626d99 (diff) | |
download | postgresql-8818f3793e88e183e8eaff21fbb6762e6e73f663.tar.gz postgresql-8818f3793e88e183e8eaff21fbb6762e6e73f663.zip |
Clarify description of pg_restore's handling of large objects.
-rw-r--r-- | doc/src/sgml/ref/pg_restore.sgml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/pg_restore.sgml b/doc/src/sgml/ref/pg_restore.sgml index 155c24b834d..820e2857704 100644 --- a/doc/src/sgml/ref/pg_restore.sgml +++ b/doc/src/sgml/ref/pg_restore.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/pg_restore.sgml,v 1.75 2008/04/13 03:49:21 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/pg_restore.sgml,v 1.76 2008/09/07 19:12:57 tgl Exp $ --> <refentry id="APP-PGRESTORE"> <refmeta> @@ -588,8 +588,11 @@ CREATE DATABASE foo WITH TEMPLATE template0; <listitem> <para> - <application>pg_restore</application> will not restore large objects for a single table. If - an archive contains large objects, then all large objects will be restored. + <application>pg_restore</application> cannot restore large objects + selectively, for instance only those for a specific table. If + an archive contains large objects, then all large objects will be + restored, or none of them if they are excluded via <option>-L</option>, + <option>-t</option>, or other options. </para> </listitem> |