diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2021-07-29 21:39:40 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2021-07-29 21:39:40 +0200 |
commit | c73bba23ef07f88ce3860a06bbf56180e00b185d (patch) | |
tree | f34191440ed3e61fe6a620bab5be0dbe23480189 | |
parent | 43f1d2ab361ccbd5ba8b53578fd4bcea9a6344a6 (diff) | |
download | postgresql-c73bba23ef07f88ce3860a06bbf56180e00b185d.tar.gz postgresql-c73bba23ef07f88ce3860a06bbf56180e00b185d.zip |
docs: Fix bit_count example output
The returnvalue for the bit_count(::bytea) example was assuming a
non-default value of standard_conforming_strings. This was fixed
in the tests in commit ebedd0c78.
Author: wangzk.fnstxz@fujitsu.com
Discussion: https://postgr.es/m/OSZPR01MB6551FFAC1088C82C3D799BE0FAEB9@OSZPR01MB6551.jpnprd01.prod.outlook.com
Backpatch-through: 14
-rw-r--r-- | doc/src/sgml/func.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index c12d03e5832..d83f39f7cd0 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -4085,7 +4085,7 @@ SELECT format('Testing %3$s, %2$s, %s', 'one', 'two', 'three'); </para> <para> <literal>bit_count('\x1234567890'::bytea)</literal> - <returnvalue>31</returnvalue> + <returnvalue>15</returnvalue> </para></entry> </row> |