diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-06-03 06:29:31 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-06-03 06:29:31 +0000 |
commit | b46e5b528103f204224bfe007f3d2ffe3513a8a1 (patch) | |
tree | 761313887036c904df5e22f25107d60156e8c292 | |
parent | f1cf69c080ef0ae30c7e38b6bcbe545fba9f9696 (diff) | |
download | postgresql-b46e5b528103f204224bfe007f3d2ffe3513a8a1.tar.gz postgresql-b46e5b528103f204224bfe007f3d2ffe3513a8a1.zip |
SET geqo TO 'on' restores _use_geqo_rels_ to GEQO_RELS, not
to last specified with 'on' #.
What is better ?
-rw-r--r-- | src/backend/tcop/variable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tcop/variable.c b/src/backend/tcop/variable.c index b3d3edf2aee..4f00968dc2c 100644 --- a/src/backend/tcop/variable.c +++ b/src/backend/tcop/variable.c @@ -2,7 +2,7 @@ * Routines for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements. * - * $Id: variable.c,v 1.10 1997/06/02 11:00:57 vadim Exp $ + * $Id: variable.c,v 1.11 1997/06/03 06:29:31 vadim Exp $ * */ @@ -151,7 +151,7 @@ static bool parse_geqo (const char *value) if ( strcasecmp (tok, "on") == 0 ) { - int32 geqo_rels = _use_geqo_rels_; + int32 geqo_rels = GEQO_RELS; if ( val != NULL ) { |