1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-27 00:12:01 +03:00

psort cleanups.

This commit is contained in:
Bruce Momjian
1997-08-06 05:38:46 +00:00
parent 8fd7db8163
commit cc24b846dd
3 changed files with 8 additions and 9 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.38 1997/08/06 05:08:37 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.39 1997/08/06 05:38:35 momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -108,7 +108,7 @@ extern int lockingOff;
extern int NBuffers;
int fsyncOff = 0;
int SortMem = 512 * 1024;
int SortMem = 512;
int dontExecute = 0;
static int ShowStats;
@@ -1045,7 +1045,7 @@ PostgresMain(int argc, char *argv[])
* S - amount of sort memory to use in 1k bytes
* ----------------
*/
SortMem = atoi(optarg) * 1024;
SortMem = atoi(optarg);
break;
#ifdef NOT_USED
@@ -1292,7 +1292,7 @@ PostgresMain(int argc, char *argv[])
*/
if (IsUnderPostmaster == false) {
puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.38 $ $Date: 1997/08/06 05:08:37 $");
puts("$Revision: 1.39 $ $Date: 1997/08/06 05:38:35 $");
}
/* ----------------