From: Tom Lane Date: Sat, 18 Mar 2023 20:11:22 +0000 (-0400) Subject: Doc: fix documentation example for bytea hex output format. X-Git-Tag: REL_11_20~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4af259543b1581deeaedd6a983223d44b2db98b7;p=thirdparty%2Fpostgresql.git Doc: fix documentation example for bytea hex output format. Per report from rsindlin Discussion: https://postgr.es/m/167907221210.1803488.5939223864945604536@wrigleys.postgresql.org --- diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index bc48006505e..05554202502 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1356,7 +1356,12 @@ SELECT b, char_length(b) FROM test2; Example: -SELECT '\xDEADBEEF'; +SET bytea_output = 'hex'; + +SELECT '\xDEADBEEF'::bytea; + bytea +------------ + \xdeadbeef