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

Commit ce1489f

Browse files
committed
Add a whitespace to fix the query to dump large objects.
PL/pgSQL-by-default patch broke the code for 8.3 <= server_version < 8.5.
1 parent 4fca795 commit ce1489f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* by PostgreSQL
1313
*
1414
* IDENTIFICATION
15-
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.557 2009/12/18 21:28:42 momjian Exp $
15+
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.558 2009/12/19 04:13:30 itagaki Exp $
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
@@ -4613,7 +4613,7 @@ getProcLangs(int *numProcLangs)
46134613
"lanvalidator, lanacl, "
46144614
"(%s lanowner) AS lanowner "
46154615
"FROM pg_language "
4616-
"WHERE lanispl%s"
4616+
"WHERE lanispl%s "
46174617
"ORDER BY oid",
46184618
username_subquery,
46194619
binary_upgrade ? "\nAND lanname != 'plpgsql'" : "");

0 commit comments

Comments
 (0)