@@ -121,37 +121,37 @@ INSERT INTO pg_catalog.pg_statistic SELECT * FROM ins;
121
121
122
122
<listitem>
123
123
<para>
124
- Fetches the schema-qualified operator name by operator id.
124
+ Fetches the schema-qualified operator name by operator id <literal>opid</> .
125
125
</para>
126
126
</listitem>
127
127
</varlistentry>
128
128
129
129
<varlistentry>
130
130
<term>
131
- <function>to_schema_qualified_type(opid oid) returns text</function>
131
+ <function>to_schema_qualified_type(typid oid) returns text</function>
132
132
<indexterm>
133
133
<primary>to_schema_qualified_type</primary>
134
134
</indexterm>
135
135
</term>
136
136
137
137
<listitem>
138
138
<para>
139
- Fetches the schema-qualified type name by type id.
139
+ Fetches the schema-qualified type name by type id <literal>typid</> .
140
140
</para>
141
141
</listitem>
142
142
</varlistentry>
143
143
144
144
<varlistentry>
145
145
<term>
146
- <function>to_schema_qualified_relation(opid oid) returns text</function>
146
+ <function>to_schema_qualified_relation(relid oid) returns text</function>
147
147
<indexterm>
148
148
<primary>to_schema_qualified_relation</primary>
149
149
</indexterm>
150
150
</term>
151
151
152
152
<listitem>
153
153
<para>
154
- Fetches the schema-qualified relation name by relation id.
154
+ Fetches the schema-qualified relation name by relation id <literal>relid</> .
155
155
</para>
156
156
</listitem>
157
157
</varlistentry>
@@ -181,8 +181,8 @@ INSERT INTO pg_catalog.pg_statistic SELECT * FROM ins;
181
181
182
182
<listitem>
183
183
<para>
184
- Given a relation name and a column number, returns the column name
185
- as <literal>text</>.
184
+ Given a relation name<literal>relation</> and a column number
185
+ <literal>colnum</>, returns the column name as <literal>text</>.
186
186
</para>
187
187
</listitem>
188
188
</varlistentry>
@@ -197,8 +197,8 @@ INSERT INTO pg_catalog.pg_statistic SELECT * FROM ins;
197
197
198
198
<listitem>
199
199
<para>
200
- Given a relation name and a column name, returns the column number
201
- as <literal>int2</>.
200
+ Given a relation name<literal>relation</> and a column name
201
+ <literal>col</>, returns the column number as <literal>int2</>.
202
202
</para>
203
203
</listitem>
204
204
</varlistentry>
@@ -213,8 +213,8 @@ INSERT INTO pg_catalog.pg_statistic SELECT * FROM ins;
213
213
214
214
<listitem>
215
215
<para>
216
- Given a relation name and a column name, returns the column type
217
- as <literal>text</>.
216
+ Given a relation name<literal>relation</> and a column name
217
+ <literal>col</>, returns the column type as <literal>text</>.
218
218
</para>
219
219
</listitem>
220
220
</varlistentry>
@@ -230,9 +230,10 @@ INSERT INTO pg_catalog.pg_statistic SELECT * FROM ins;
230
230
<listitem>
231
231
<para>
232
232
<function>to_namespace</function> duplicates the behavior of
233
- the cast to <literal>regnamespace</> type, which is not
234
- present in the 9.4 release (and prior releases). This
235
- function returns the <literal>oid</> of the given schema.
233
+ the cast to the
234
+ <link linkend="datatype-oid"><structname>regnamespace</structname></link>
235
+ type, which is not present in the 9.4 release (and prior releases).
236
+ This function returns the <literal>oid</> of the given schema.
236
237
</para>
237
238
</listitem>
238
239
</varlistentry>