mirror of
https://github.com/postgres/postgres.git
synced 2025-08-08 06:02:22 +03:00
Stamp HEAD as 9.0devel, and update various places that were referring to 8.5
(hope I got 'em all). Per discussion, this release will be 9.0 not 8.5.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.44 2010/01/02 16:57:33 momjian Exp $
|
||||
* $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.45 2010/02/17 04:19:37 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -142,7 +142,7 @@ vacuumlo(char *database, struct _param * param)
|
||||
*/
|
||||
buf[0] = '\0';
|
||||
strcat(buf, "CREATE TEMP TABLE vacuum_l AS ");
|
||||
if (PQserverVersion(conn) >= 80500)
|
||||
if (PQserverVersion(conn) >= 90000)
|
||||
strcat(buf, "SELECT oid AS lo FROM pg_largeobject_metadata");
|
||||
else
|
||||
strcat(buf, "SELECT DISTINCT loid AS lo FROM pg_largeobject");
|
||||
|
Reference in New Issue
Block a user