Commit 10971a6f authored by Vadim B. Mikheev's avatar Vadim B. Mikheev

Allow set max number of tuples in leftist tree for sorts

(-S memory,tuples)
parent 36b54847
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.46 1997/09/15 14:28:16 vadim Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.47 1997/09/18 05:19:17 vadim Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
...@@ -1120,10 +1120,32 @@ PostgresMain(int argc, char *argv[]) ...@@ -1120,10 +1120,32 @@ PostgresMain(int argc, char *argv[])
case 'S': case 'S':
/* ---------------- /* ----------------
* S - amount of sort memory to use in 1k bytes * S - amount of sort memory to use in 1k bytes and
* (optional) max number of tuples in leftist tree
* ---------------- * ----------------
*/ */
SortMem = atoi(optarg); {
int S;
char *p = strchr (optarg, ',');
if ( p != NULL )
{
*p = 0;
S = atoi(optarg);
if ( S >= 4*MAXBLCKSZ/1024 )
SortMem = S;
S = atoi (p + 1);
if ( S >= 32 )
SortTuplesInTree = S;
*p = ',';
}
else
{
S = atoi(optarg);
if ( S >= 4*MAXBLCKSZ/1024 )
SortMem = S;
}
}
break; break;
case 's': case 's':
...@@ -1385,7 +1407,7 @@ PostgresMain(int argc, char *argv[]) ...@@ -1385,7 +1407,7 @@ PostgresMain(int argc, char *argv[])
if (IsUnderPostmaster == false) if (IsUnderPostmaster == false)
{ {
puts("\nPOSTGRES backend interactive interface"); puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.46 $ $Date: 1997/09/15 14:28:16 $"); puts("$Revision: 1.47 $ $Date: 1997/09/18 05:19:17 $");
} }
/* ---------------- /* ----------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment