@@ -126,8 +126,15 @@ test=# \COPY (select dump_statistic()) TO 'dump_stat.sql'
126126
127127 <listitem>
128128 <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:
130130 </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>
131138 </listitem>
132139 </varlistentry>
133140
@@ -141,15 +148,8 @@ test=# \COPY (select dump_statistic()) TO 'dump_stat.sql'
141148
142149 <listitem>
143150 <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</>.
145152 </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>
153153 </listitem>
154154 </varlistentry>
155155