File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
# unused_oids
3
3
#
4
- # $Header: /cvsroot/pgsql/src/include/catalog/unused_oids,v 1.2 1998/12/31 20:09:49 momjian Exp $
4
+ # $Header: /cvsroot/pgsql/src/include/catalog/unused_oids,v 1.3 2000/01/17 00:53:11 tgl Exp $
5
5
#
6
6
# finds blocks of oids that have not already been claimed by
7
7
# post_hackers for internal purposes. primarily useful for
16
16
# non-berkeley post_hackers should probably not try to use oids
17
17
# less than the highest one that comes with the distributed source.
18
18
#
19
- # run this script in src/backend /catalog.
19
+ # run this script in src/include /catalog.
20
20
#
21
21
egrep ' ^DATA' pg_* .h | \
22
22
sed -e ' s/^.*OID[^=]*=[^0-9]*//' -e ' s/[^0-9].*$//' | \
@@ -37,5 +37,6 @@ BEGIN {
37
37
last = $1;
38
38
}
39
39
END {
40
- print last + 1, "-", 2^14-1; /* current BootstrapObjectIdData value */
40
+ # 2^14-1 = current BootstrapObjectIdData value
41
+ print last + 1, "-", 2^14-1;
41
42
}'
You can’t perform that action at this time.
0 commit comments