diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-10-24 19:22:37 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-10-24 19:22:37 +0000 |
commit | 9efee18a28ddacaf63d2fec3f1ea93325e8b6792 (patch) | |
tree | b4454ec14445400140c6ee6d8e53a5b25210ab1d /src | |
parent | 2dd82a67e560ac7a6dc6b8373749e6e2bcd9641a (diff) | |
download | postgresql-9efee18a28ddacaf63d2fec3f1ea93325e8b6792.tar.gz postgresql-9efee18a28ddacaf63d2fec3f1ea93325e8b6792.zip |
Add comment explaining that this table doesn't do what you
might think ... in fact doesn't do much of anything at the moment ...
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_version.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/catalog/pg_version.h b/src/include/catalog/pg_version.h index 49f3e0f0080..05ce5e03755 100644 --- a/src/include/catalog/pg_version.h +++ b/src/include/catalog/pg_version.h @@ -4,10 +4,17 @@ * definition of the system "version" relation (pg_version) * along with the relation's initial contents. * + * NOTE: this table has nothing to do with the overall Postgres system + * version or anything like that. It is for defining individual relations + * that have multiple concurrently-existing versions. Yes, there used to + * be such a feature in Postgres, but it's been broken for a long time + * (see src/backend/commands/_deadcode/version.c). The pg_version table + * isn't even created at present. + * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_version.h,v 1.8 1999/02/13 23:21:16 momjian Exp $ + * $Id: pg_version.h,v 1.9 1999/10/24 19:22:37 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki |