@@ -126,8 +126,15 @@ test=# \COPY (select dump_statistic()) TO 'dump_stat.sql'
126
126
127
127
<listitem>
128
128
<para>
129
- Fetches the schema-qualified operator name by operator id <literal>opid</>.
129
+ Fetches the schema-qualified operator name by operator id <literal>opid</>. For example:
130
130
</para>
131
+ <screen>
132
+ test=# SELECT to_schema_qualified_operator('+(int,int)'::regoperator);
133
+ to_schema_qualified_operator
134
+ ------------------------------------------------
135
+ pg_catalog.+(pg_catalog.int4, pg_catalog.int4)
136
+ (1 row)
137
+ </screen>
131
138
</listitem>
132
139
</varlistentry>
133
140
@@ -141,15 +148,8 @@ test=# \COPY (select dump_statistic()) TO 'dump_stat.sql'
141
148
142
149
<listitem>
143
150
<para>
144
- Fetches the schema-qualified type name by type id <literal>typid</>. For example:
151
+ Fetches the schema-qualified type name by type id <literal>typid</>.
145
152
</para>
146
- <screen>
147
- test=# SELECT to_schema_qualified_operator('+(int,int)'::regoperator);
148
- to_schema_qualified_operator
149
- ------------------------------------------------
150
- pg_catalog.+(pg_catalog.int4, pg_catalog.int4)
151
- (1 row)
152
- </screen>
153
153
</listitem>
154
154
</varlistentry>
155
155