From 93dc1d46852c2a01a03bb25f72877c5d9aaadd49 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 1 Sep 2004 18:04:32 +0000 Subject: [PATCH] Fix mistaken comment. --- src/backend/optimizer/prep/prepqual.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/optimizer/prep/prepqual.c b/src/backend/optimizer/prep/prepqual.c index 9a04477006..0626ad29c5 100644 --- a/src/backend/optimizer/prep/prepqual.c +++ b/src/backend/optimizer/prep/prepqual.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/prep/prepqual.c,v 1.46 2004/08/29 05:06:44 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/prep/prepqual.c,v 1.47 2004/09/01 18:04:32 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -288,7 +288,7 @@ push_nots(Expr *qual) * possible? */ /* - * Negate an operator clause if possible: (NOT (< A B)) => (> A B) + * Negate an operator clause if possible: (NOT (< A B)) => (>= A B) * Otherwise, retain the clause as it is (the NOT can't be pushed down * any farther). */