Commit ac401e06 authored by Tom Lane's avatar Tom Lane

Change oid8/int28 -> oidvector/int2vector.

parent a97caacb
.\" This is -*-nroff-*- .\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here.... .\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.1 1999/07/22 15:11:03 thomas Exp $ .\" $Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.2 2000/01/11 01:40:04 tgl Exp $
.TH "SYSTEM CATALOGS" INTRO 03/13/94 PostgreSQL PostgreSQL .TH "SYSTEM CATALOGS" INTRO 03/13/94 PostgreSQL PostgreSQL
.SH "Section 7 - System Catalogs" .SH "Section 7 - System Catalogs"
.de LS .de LS
...@@ -192,8 +192,8 @@ pg_class ...@@ -192,8 +192,8 @@ pg_class
0=magnetic disk 0=magnetic disk
1=sony WORM jukebox 1=sony WORM jukebox
2=main memory */ 2=main memory */
int28 relkey /* - unused */ int2vector relkey /* - unused */
oid8 relkeyop /* - unused */ oidvector relkeyop /* - unused */
aclitem relacl[1] /* access control lists */ aclitem relacl[1] /* access control lists */
.fi .fi
.nf M .nf M
...@@ -229,9 +229,9 @@ pg_inherits ...@@ -229,9 +229,9 @@ pg_inherits
oid indproc /* function to compute index key from oid indproc /* function to compute index key from
attribute(s) in heap attribute(s) in heap
0=not a functional index */ 0=not a functional index */
int28 indkey /* attribute numbers of key int2vector indkey /* attribute numbers of key
attribute(s) */ attribute(s) */
oid8 indclass /* opclass of each key */ oidvector indclass /* opclass of each key */
bool indisclustered /* is the index clustered? bool indisclustered /* is the index clustered?
- unused */ - unused */
bool indisarchived /* is the index archival? bool indisarchived /* is the index archival?
...@@ -304,7 +304,7 @@ pg_proc ...@@ -304,7 +304,7 @@ pg_proc
bool proretset /* does the function return a set? bool proretset /* does the function return a set?
- unused */ - unused */
oid prorettype /* return type */ oid prorettype /* return type */
oid8 proargtypes /* argument types */ oidvector proargtypes /* argument types */
int4 probyte_pct /* % of argument size (in bytes) that int4 probyte_pct /* % of argument size (in bytes) that
needs to be examined in order to needs to be examined in order to
compute the function */ compute the function */
......
...@@ -474,8 +474,8 @@ WARN::function declared to return type EMP does not retrieve (EMP.*) ...@@ -474,8 +474,8 @@ WARN::function declared to return type EMP does not retrieve (EMP.*)
<entry>include/postgres.h</entry> <entry>include/postgres.h</entry>
</row> </row>
<row> <row>
<entry>int28</entry> <entry>int2vector</entry>
<entry>(int28 *)</entry> <entry>(int2vector *)</entry>
<entry>include/postgres.h</entry> <entry>include/postgres.h</entry>
</row> </row>
<row> <row>
...@@ -509,8 +509,8 @@ WARN::function declared to return type EMP does not retrieve (EMP.*) ...@@ -509,8 +509,8 @@ WARN::function declared to return type EMP does not retrieve (EMP.*)
<entry>include/postgres.h</entry> <entry>include/postgres.h</entry>
</row> </row>
<row> <row>
<entry>oid8</entry> <entry>oidvector</entry>
<entry>(oid8 *)</entry> <entry>(oidvector *)</entry>
<entry>include/postgres.h</entry> <entry>include/postgres.h</entry>
</row> </row>
<row> <row>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment