aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/adt')
-rw-r--r--src/backend/utils/adt/float.c14
-rw-r--r--src/backend/utils/adt/oid.c8
-rw-r--r--src/backend/utils/adt/selfuncs.c4
3 files changed, 13 insertions, 13 deletions
diff --git a/src/backend/utils/adt/float.c b/src/backend/utils/adt/float.c
index bef89f38c70..c300d79f216 100644
--- a/src/backend/utils/adt/float.c
+++ b/src/backend/utils/adt/float.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.105 2004/05/16 23:18:55 neilc Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.106 2004/08/04 21:34:02 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -259,10 +259,10 @@ float4in(PG_FUNCTION_ARGS)
* Check for an empty-string input to begin with, to avoid
* the vagaries of strtod() on different platforms.
*
- * In releases prior to 7.5, we accepted an empty string as valid
- * input (yielding a float4 of 0). In 7.5, we accept empty
+ * In releases prior to 8.0, we accepted an empty string as valid
+ * input (yielding a float4 of 0). In 8.0, we accept empty
* strings, but emit a warning noting that the feature is
- * deprecated. In 7.6+, the warning should be replaced by an
+ * deprecated. In 8.1+, the warning should be replaced by an
* error.
*/
if (*num == '\0')
@@ -424,10 +424,10 @@ float8in(PG_FUNCTION_ARGS)
* Check for an empty-string input to begin with, to avoid
* the vagaries of strtod() on different platforms.
*
- * In releases prior to 7.5, we accepted an empty string as valid
- * input (yielding a float8 of 0). In 7.5, we accept empty
+ * In releases prior to 8.0, we accepted an empty string as valid
+ * input (yielding a float8 of 0). In 8.0, we accept empty
* strings, but emit a warning noting that the feature is
- * deprecated. In 7.6+, the warning should be replaced by an
+ * deprecated. In 8.1+, the warning should be replaced by an
* error.
*/
if (*num == '\0')
diff --git a/src/backend/utils/adt/oid.c b/src/backend/utils/adt/oid.c
index 7ff6c6a27c1..ef9a02d5c54 100644
--- a/src/backend/utils/adt/oid.c
+++ b/src/backend/utils/adt/oid.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/adt/oid.c,v 1.56 2004/03/11 02:11:13 neilc Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/oid.c,v 1.57 2004/08/04 21:34:02 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -34,10 +34,10 @@ oidin_subr(const char *funcname, const char *s, char **endloc)
Oid result;
/*
- * In releases prior to 7.5, we accepted an empty string as valid
- * input (yielding an OID of 0). In 7.5, we accept empty strings,
+ * In releases prior to 8.0, we accepted an empty string as valid
+ * input (yielding an OID of 0). In 8.0, we accept empty strings,
* but emit a warning noting that the feature is deprecated. In
- * 7.6+, the warning should be replaced by an error.
+ * 8.1+, the warning should be replaced by an error.
*/
if (*s == '\0')
ereport(WARNING,
diff --git a/src/backend/utils/adt/selfuncs.c b/src/backend/utils/adt/selfuncs.c
index c7ee847a11a..7a21892379d 100644
--- a/src/backend/utils/adt/selfuncs.c
+++ b/src/backend/utils/adt/selfuncs.c
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/adt/selfuncs.c,v 1.161 2004/06/11 01:09:04 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/selfuncs.c,v 1.162 2004/08/04 21:34:02 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -4294,7 +4294,7 @@ btcostestimate(PG_FUNCTION_ARGS)
* from pg_statistic, estimate the index correlation as C for a single-
* column index, or C * 0.75 for multiple columns. (The idea here is
* that multiple columns dilute the importance of the first column's
- * ordering, but don't negate it entirely. Before 7.5 we divided the
+ * ordering, but don't negate it entirely. Before 8.0 we divided the
* correlation by the number of columns, but that seems too strong.)
*/
if (index->indexkeys[0] != 0)