diff options
author | Michael Paquier | 2019-02-18 03:44:25 +0000 |
---|---|---|
committer | Michael Paquier | 2019-02-18 03:44:25 +0000 |
commit | f0cce9fcb5fd9f4158dbf5dfe11f263ad3b7b1dd (patch) | |
tree | a7cc1dcf53cb739fee258363b12578265a1371f9 | |
parent | 0dd6ff0ac8482f753405c5bdb091d2a8adc58e75 (diff) |
Fix typo in transam.h for OIDs assigned by genbki.pl
The actual range of reserved OIDs in this case is [11000,11999] and not
[11000,12000].
Author: John Naylor
Discussion: https://postgr.es/m/CAJVSVGV5StmK-inxbmrf0nLbBGeaAKnjnqxXmk+4ufeav8JMSA@mail.gmail.com
-rw-r--r-- | src/include/access/transam.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/transam.h b/src/include/access/transam.h index 4a7eab00d8..444be4aeb5 100644 --- a/src/include/access/transam.h +++ b/src/include/access/transam.h @@ -74,7 +74,7 @@ * OIDs 1-9999 are reserved for manual assignment (see .dat files in * src/include/catalog/), with 9000-9999 tentatively reserved for forks. * - * OIDs 10000-12000 are reserved for assignment by genbki.pl, when the + * OIDs 10000-11999 are reserved for assignment by genbki.pl, when the * .dat files in src/include/catalog/ do not specify oids. * * OIDS 12000-16383 are reserved for assignment during initdb |