From a1ee06625c268a10ce572e72af07ac082626eeb0 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 20 Sep 2001 14:20:28 +0000 Subject: Provide tunable knob for x = NULL -> x IS NULL transformation, default to off. --- src/backend/utils/misc/guc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/backend/utils/misc/guc.c') diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 5af9fc67ab2..ebb7745347e 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -4,7 +4,7 @@ * Support for grand unified configuration scheme, including SET * command, configuration file, and command line options. * - * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.48 2001/09/12 14:06:37 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.49 2001/09/20 14:20:27 petere Exp $ * * Copyright 2000 by PostgreSQL Global Development Group * Written by Peter Eisentraut . @@ -247,12 +247,10 @@ static struct config_bool {"show_source_port", PGC_SIGHUP, &ShowPortNumber, false, NULL}, {"sql_inheritance", PGC_USERSET, &SQL_inheritance, true, NULL}, - {"australian_timezones", PGC_USERSET, &Australian_timezones, false, ClearDateCache}, - {"fixbtree", PGC_POSTMASTER, &FixBTree, true, NULL}, - {"password_encryption", PGC_USERSET, &Password_encryption, false, NULL}, + {"transform_null_equals", PGC_USERSET, &Transform_null_equals, false, NULL}, {NULL, 0, NULL, false, NULL} }; -- cgit v1.2.3