1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Add missing reset of need_initialization in reloptions code.

This resulted in useless extra work during every call of parseRelOptions,
but no bad effects other than that.  Noted by Alvaro.
This commit is contained in:
Tom Lane
2010-03-11 21:47:25 +00:00
parent 2875cd24db
commit eb9954e362

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/common/reloptions.c,v 1.28.2.1 2009/08/27 17:19:31 alvherre Exp $ * $PostgreSQL: pgsql/src/backend/access/common/reloptions.c,v 1.28.2.2 2010/03/11 21:47:25 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -210,8 +210,9 @@ static void
initialize_reloptions(void) initialize_reloptions(void)
{ {
int i; int i;
int j = 0; int j;
j = 0;
for (i = 0; boolRelOpts[i].gen.name; i++) for (i = 0; boolRelOpts[i].gen.name; i++)
j++; j++;
for (i = 0; intRelOpts[i].gen.name; i++) for (i = 0; intRelOpts[i].gen.name; i++)
@ -268,6 +269,9 @@ initialize_reloptions(void)
/* add a list terminator */ /* add a list terminator */
relOpts[j] = NULL; relOpts[j] = NULL;
/* flag the work is complete */
need_initialization = false;
} }
/* /*