Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4799bb8

Browse files
committed
Fix for pg_dump of large objects, from alvin@camberlo.demon.co.uk.
1 parent 4d72e2b commit 4799bb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
*
2323
* IDENTIFICATION
24-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.65 1998/03/14 21:57:22 momjian Exp $
24+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.66 1998/03/16 05:41:39 momjian Exp $
2525
*
2626
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
2727
*
@@ -1856,7 +1856,7 @@ getIndices(int *numIndices)
18561856
* find all the user-defined indices. We do not handle partial
18571857
* indices.
18581858
*
1859-
* skip 'Xinx*' - indices on inversion objects
1859+
* skip 'xinx*' - indices on inversion objects
18601860
*
18611861
* this is a 4-way join !!
18621862
*/
@@ -1877,7 +1877,7 @@ getIndices(int *numIndices)
18771877
"from pg_index i, pg_class t1, pg_class t2, pg_am a "
18781878
"where t1.oid = i.indexrelid and t2.oid = i.indrelid "
18791879
"and t1.relam = a.oid and i.indexrelid > '%d'::oid "
1880-
"and t2.relname !~ '^pg_' and t1.relname !~ '^Xinx'",
1880+
"and t2.relname !~ '^pg_' and t1.relname !~ '^xinx'",
18811881
g_last_builtin_oid);
18821882

18831883
res = PQexec(g_conn, query);

0 commit comments

Comments
 (0)