mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Fix for large objects and case sensitivity, from Raymond Toy.
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.29 1997/06/02 02:51:53 scrappy Exp $
|
||||
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.30 1997/06/05 22:59:45 momjian Exp $
|
||||
*
|
||||
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
|
||||
*
|
||||
@@ -1068,7 +1068,7 @@ getTables(int *numTables)
|
||||
ordering by oid is important so that we always process the parent
|
||||
tables before the child tables when traversing the tblinfo*
|
||||
|
||||
we ignore tables that start with Xinv */
|
||||
we ignore tables that start with xinv */
|
||||
|
||||
res = PQexec(g_conn, "begin");
|
||||
if (!res ||
|
||||
@@ -1081,7 +1081,7 @@ getTables(int *numTables)
|
||||
sprintf(query,
|
||||
"SELECT oid, relname, relarch, relkind, relacl from pg_class "
|
||||
"where (relkind = 'r' or relkind = 'S') and relname !~ '^pg_' "
|
||||
"and relname !~ '^Xinv' order by oid;");
|
||||
"and relname !~ '^xinv' order by oid;");
|
||||
|
||||
res = PQexec(g_conn, query);
|
||||
if (!res ||
|
||||
|
Reference in New Issue
Block a user