We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent90b8834 commit116ba5dCopy full SHA for 116ba5d
src/include/catalog/unused_oids
@@ -1,7 +1,7 @@
1
#!/bin/sh
2
# unused_oids
3
#
4
-# $Header: /cvsroot/pgsql/src/include/catalog/unused_oids,v 1.2 1998/12/31 20:09:49 momjian Exp $
+# $Header: /cvsroot/pgsql/src/include/catalog/unused_oids,v 1.3 2000/01/17 00:53:11 tgl Exp $
5
6
#finds blocks of oids that have not already been claimed by
7
#post_hackers for internal purposes. primarily useful for
@@ -16,7 +16,7 @@
16
#non-berkeley post_hackers should probably not try to use oids
17
#less than the highest one that comes with the distributed source.
18
19
-#run this script in src/backend/catalog.
+#run this script in src/include/catalog.
20
21
egrep'^DATA' pg_*.h| \
22
sed -e's/^.*OID[^=]*=[^0-9]*//' -e's/[^0-9].*$//'| \
@@ -37,5 +37,6 @@ BEGIN {
37
last = $1;
38
}
39
END {
40
-print last + 1, "-", 2^14-1; /* current BootstrapObjectIdData value */
+# 2^14-1 = current BootstrapObjectIdData value
41
+print last + 1, "-", 2^14-1;
42
}'