aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-09-16 06:11:44 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-09-16 06:11:44 +0000
commit40aade2c06d68f11fb2aa9cb2a96a7e25794654c (patch)
treebeb044fc9aa857a7989ab833ef315687502e4945
parentf589ca68001c82d3e15e86f8e6ff33ad344f7062 (diff)
downloadpostgresql-40aade2c06d68f11fb2aa9cb2a96a7e25794654c.tar.gz
postgresql-40aade2c06d68f11fb2aa9cb2a96a7e25794654c.zip
At Andrew's suggestion, upgrade the Version numbers to reflect the
current state of development...namely, we are on 2.0 NOTE: BTW, the is also a check in postmaster which won't let you use an older version of the database by checking the version number. The version number of a database is in data/PG_VERSION (a plain ASCII file). - Andrew
-rw-r--r--src/backend/include/miscadmin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/include/miscadmin.h b/src/backend/include/miscadmin.h
index 85c5699205e..58bbb7d8d2f 100644
--- a/src/backend/include/miscadmin.h
+++ b/src/backend/include/miscadmin.h
@@ -12,7 +12,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: miscadmin.h,v 1.1.1.1 1996/07/09 06:21:28 scrappy Exp $
+ * $Id: miscadmin.h,v 1.2 1996/09/16 06:11:44 scrappy Exp $
*
* NOTES
* some of the information in this file will be moved to
@@ -85,8 +85,8 @@ extern Oid LastOidProcessed; /* for query rewrite */
* magic.h - definitions of the indexes of the magic numbers *
*****************************************************************************/
-#define PG_RELEASE 5
-#define PG_VERSION 1
+#define PG_RELEASE 6
+#define PG_VERSION 0
#define PG_VERFILE "PG_VERSION"
/*****************************************************************************