diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-04 21:34:35 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-04 21:34:35 +0000 |
| commit | fcbc43872759f2fead5782fd9b04cb70b72e7f56 (patch) | |
| tree | 07673d8517a11d149859d7b8146233f8fad66f3f /src/backend/optimizer/path | |
| parent | ecb68138e9d26324256db004c1783b4a41b75a33 (diff) | |
| download | postgresql-fcbc43872759f2fead5782fd9b04cb70b72e7f56.tar.gz | |
Label CVS tip as 8.0devel instead of 7.5devel. Adjust various comments
and documentation to reference 8.0 instead of 7.5.
Diffstat (limited to 'src/backend/optimizer/path')
| -rw-r--r-- | src/backend/optimizer/path/costsize.c | 4 | ||||
| -rw-r--r-- | src/backend/optimizer/path/indxpath.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/optimizer/path/costsize.c b/src/backend/optimizer/path/costsize.c index 19848e1281..38e28729aa 100644 --- a/src/backend/optimizer/path/costsize.c +++ b/src/backend/optimizer/path/costsize.c @@ -49,7 +49,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/costsize.c,v 1.131 2004/06/10 21:02:00 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/costsize.c,v 1.132 2004/08/04 21:33:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -238,7 +238,7 @@ cost_nonsequential_access(double relpages) * tuples, but they won't reduce the number of tuples we have to fetch from * the table, so they don't reduce the scan cost. * - * NOTE: as of 7.5, indexQuals is a list of RestrictInfo nodes, where formerly + * NOTE: as of 8.0, indexQuals is a list of RestrictInfo nodes, where formerly * it was a list of bare clause expressions. */ void diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index 1c081f03b0..4424890d36 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/indxpath.c,v 1.161 2004/06/01 04:47:45 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/indxpath.c,v 1.162 2004/08/04 21:33:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -980,7 +980,7 @@ static const StrategyNumber * operator class. We use the above operator implication table to be able to * derive implications between nonidentical clauses. (Note: "foo" is known * immutable, and constants are surely immutable, but we have to check that - * the operators are too. As of 7.5 it's possible for opclasses to contain + * the operators are too. As of 8.0 it's possible for opclasses to contain * operators that are merely stable, and we dare not make deductions with * these.) * |
