From 32e85572d72b69d4ad6e07e0e2021c49dc9ed441 Mon Sep 17 00:00:00 2001 From: Itagaki Takahiro Date: Sat, 19 Dec 2009 04:13:30 +0000 Subject: [PATCH] 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. --- src/bin/pg_dump/pg_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index e058dffbc2..9748379e59 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -4613,7 +4613,7 @@ getProcLangs(int *numProcLangs) "lanvalidator, lanacl, " "(%s lanowner) AS lanowner " "FROM pg_language " - "WHERE lanispl%s" + "WHERE lanispl%s " "ORDER BY oid", username_subquery, binary_upgrade ? "\nAND lanname != 'plpgsql'" : ""); -- 2.39.5