aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/oid.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-08-04 21:34:35 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-08-04 21:34:35 +0000
commitfcbc43872759f2fead5782fd9b04cb70b72e7f56 (patch)
tree07673d8517a11d149859d7b8146233f8fad66f3f /src/backend/utils/adt/oid.c
parentecb68138e9d26324256db004c1783b4a41b75a33 (diff)
downloadpostgresql-fcbc43872759f2fead5782fd9b04cb70b72e7f56.tar.gz
postgresql-fcbc43872759f2fead5782fd9b04cb70b72e7f56.zip
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/utils/adt/oid.c')
-rw-r--r--src/backend/utils/adt/oid.c8
1 files changed, 4 insertions, 4 deletions
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,