From: | Tom Lane <tgl> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql/src/backend/optimizer (README) |
Date: | 2000-07-24 03:10:56 |
Message-ID: | 200007240310.e6O3AuQ74483@hub.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Date: Sunday, July 23, 2000 @ 23:10:55
Author: tgl
Update of /home/projects/pgsql/cvsroot/pgsql/src/backend/optimizer
from hub.org:/home/projects/pgsql/tmp/cvs-serv74468/backend/optimizer
Modified Files:
README
----------------------------- Log Message -----------------------------
Deduce equality constraints that are implied by transitivity of
mergejoinable qual clauses, and add them to the query quals. For
example, WHERE a = b AND b = c will cause us to add AND a = c.
This is necessary to ensure that it's safe to use these variables
as interchangeable sort keys, which is something 7.0 knows how to do.
Should provide a useful improvement in planning ability, too.
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2000-07-24 03:11:00 | pgsql/src/backend/optimizer/path (pathkeys.c) |
Previous Message | Tom Lane | 2000-07-24 03:10:55 | pgsql/src/include/optimizer (paths.h planmain.h) |