| From: | thomas(at)postgresql(dot)org (Thomas Lockhart) |
|---|---|
| To: | pgsql-committers(at)postgresql(dot)org |
| Subject: | pgsql/ oc/src/sgml/features.sgml rc/backend/ex ... |
| Date: | 2002-07-04 15:24:11 |
| Message-ID: | 20020704152411.DDC6C4764B6@postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
CVSROOT: /cvsroot
Module name: pgsql
Changes by: thomas(at)postgresql(dot)org 02/07/04 11:24:11
Modified files:
doc/src/sgml : features.sgml
Log message:
Move INTERSECT DISTINCT to the supported category. Error in docs.
Modified files:
src/backend/executor: execQual.c
src/backend/nodes: outfuncs.c readfuncs.c
src/backend/optimizer/path: costsize.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: primnodes.h
Log message:
Implement the IS DISTINCT FROM operator per SQL99.
Reused the Expr node to hold DISTINCT which strongly resembles
the existing OP info. Define DISTINCT_EXPR which strongly resembles
the existing OPER_EXPR opType, but with handling for NULLs required
by SQL99.
We have explicit support for single-element DISTINCT comparisons
all the way through to the executor. But, multi-element DISTINCTs
are handled by expanding into a comparison tree in gram.y as is done for
other row comparisons. Per discussions, it might be desirable to move
this into one or more purpose-built nodes to be handled in the backend.
Define the optional ROW keyword and token per SQL99.
This allows single-element row constructs, which were formerly disallowed
due to shift/reduce conflicts with parenthesized a_expr clauses.
Define the SQL99 TREAT() function. Currently, use as a synonym for CAST().
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Bruce Momjian - CVS | 2002-07-04 15:35:08 | pgsql/src/bin/pg_dump pg_backup.h pg_backup_ar ... |
| Previous Message | Bruce Momjian - CVS | 2002-07-04 03:04:55 | pgsql/ oc/src/sgml/ref/pg_restore.sgml rc/bin/ ... |