pgsql/src backend/executor/execQual.c backend/ ...

From: momjian(at)postgresql(dot)org (Bruce Momjian - CVS)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src backend/executor/execQual.c backend/ ...
Date: 2002-07-18 04:41:46
Message-ID: 20020718044146.19539475E18@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CVSROOT: /cvsroot
Module name: pgsql
Changes by: momjian(at)postgresql(dot)org 02/07/18 00:41:46

Modified files:
src/backend/executor: execQual.c
src/backend/nodes: copyfuncs.c equalfuncs.c outfuncs.c
readfuncs.c
src/backend/optimizer/util: clauses.c
src/backend/parser: gram.y keywords.c parse_expr.c
src/backend/utils/adt: ruleutils.c
src/include/nodes: makefuncs.h nodes.h parsenodes.h
src/test/regress/expected: select.out
src/test/regress/sql: select.sql

Log message:
Finished the Between patch Christopher started.

Implements between (symmetric / asymmetric) as a node.

Executes the left or right expression once, makes a Const out of the
resulting Datum and executes the >=, <= portions out of the Const sets.

Of course, the parser does a fair amount of preparatory work for this to
happen.

Rod Taylor

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian - CVS 2002-07-18 04:42:29 pgsql/src/include/nodes parsenodes.h
Previous Message Bruce Momjian - CVS 2002-07-18 04:40:30 pgsql/src backend/executor/execTuples.c backen ...