diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-03-31 18:44:29 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-03-31 18:44:29 -0400 |
commit | f9c1bb73ab5bf6027dfdc983663f8e934f20d29a (patch) | |
tree | aba423043e5d90e87b18e930d44d4fc9f59ed022 | |
parent | 22d233bac3ec1dce057d5bc7bba0f943cfbfa4fe (diff) | |
download | postgresql-f9c1bb73ab5bf6027dfdc983663f8e934f20d29a.tar.gz postgresql-f9c1bb73ab5bf6027dfdc983663f8e934f20d29a.zip |
doc: remove mention of bitwise operators as solely type-limited
There are other operators that have limited number data type support, so
just remove the sentence.
Reported-by: Sergei Agalakov
Discussion: https://postgr.es/m/158032651854.19851.16261832706661813796@wrigleys.postgresql.org
Backpatch-through: 9.5
-rw-r--r-- | doc/src/sgml/func.sgml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index b82cbea14ed..86e81045692 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -732,9 +732,8 @@ </table> <para> - The bitwise operators work only on integral data types, whereas - the others are available for all numeric data types. The bitwise - operators are also available for the bit + The bitwise operators work only on integral data types, and are also + available for the bit string types <type>bit</type> and <type>bit varying</type>, as shown in <xref linkend="functions-bit-string-op-table"/>. </para> |