aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-10-08 00:10:49 +0000
committerBruce Momjian <bruce@momjian.us>1998-10-08 00:10:49 +0000
commit30debec6e57b0678ec101eb5469d025384ed8c8d (patch)
tree13beaa143ccd06824ce90b7f5c3f9cfd81377c4d /src/backend
parentcb4292ea64749a3faf2a2b6ec737576a39e83f6a (diff)
downloadpostgresql-30debec6e57b0678ec101eb5469d025384ed8c8d.tar.gz
postgresql-30debec6e57b0678ec101eb5469d025384ed8c8d.zip
Hello!
Here are two new patches for the Win32 support. 1) The patch based on the one from Hiroshi Inoue [Inoue@tpf.co.jp], to load Winsock.dll from libpq.dll. 2) A patch for psql.c to remove the call to WSAStartup(), since it is not required when it's done in libpq.dll. I'm still looking for the possibility of having a crypt() function in libpq.dll too, the same way getopt was included. Any chance of getting this before 6.4, or should we wait for the next one? //Magnus
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/commands/vacuum.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c
index 1c6793241b7..c58515e5b6a 100644
--- a/src/backend/commands/vacuum.c
+++ b/src/backend/commands/vacuum.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.84 1998/10/07 22:31:50 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.85 1998/10/08 00:10:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -558,7 +558,6 @@ vc_vacone(Oid relid, bool analyze, List *va_cols)
vacrelstats->num_tuples, vacrelstats->hasindex, vacrelstats);
/* next command frees attribute stats */
-
CommitTransactionCommand();
}