Doc: fix documentation example for bytea hex output format.

Per report from rsindlin

Discussion: https://postgr.es/m/167907221210.1803488.5939223864945604536@wrigleys.postgresql.org
REL_15_STABLE
Tom Lane 3 years ago
parent 8b87e92919
commit 8995eac6c4
  1. 7
      doc/src/sgml/datatype.sgml

@ -1480,7 +1480,12 @@ SELECT b, char_length(b) FROM test2;
<para>
Example:
<programlisting>
SELECT '\xDEADBEEF';
SET bytea_output = 'hex';
SELECT '\xDEADBEEF'::bytea;
bytea
------------
\xdeadbeef
</programlisting>
</para>
</sect2>

Loading…
Cancel
Save