Skip to content

Commit a815a57

Browse files
committed
Use "bitwise" rather than "binary for AND/OR descriptions in \d, to
match SGML documentation.
1 parent 14ebeee commit a815a57

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

src/include/catalog/pg_proc.h

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.393 2006/01/26 02:35:49 tgl Exp $
10+
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.394 2006/02/09 14:53:51 momjian Exp $
1111
*
1212
* NOTES
1313
* The script catalog/genbki.sh reads this file and generates .bki
@@ -2720,43 +2720,43 @@ DATA(insert OID = 1861 ( int82ge PGNSP PGUID 12 f f t f i 2 16 "20 21" _nul
27202720
DESCR("greater-than-or-equal");
27212721

27222722
DATA(insert OID = 1892 ( int2and PGNSP PGUID 12 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2and - _null_ ));
2723-
DESCR("binary and");
2723+
DESCR("bitwise and");
27242724
DATA(insert OID = 1893 ( int2or PGNSP PGUID 12 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2or - _null_ ));
2725-
DESCR("binary or");
2725+
DESCR("bitwise or");
27262726
DATA(insert OID = 1894 ( int2xor PGNSP PGUID 12 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2xor - _null_ ));
2727-
DESCR("binary xor");
2727+
DESCR("bitwise xor");
27282728
DATA(insert OID = 1895 ( int2not PGNSP PGUID 12 f f t f i 1 21 "21" _null_ _null_ _null_ int2not - _null_ ));
2729-
DESCR("binary not");
2729+
DESCR("bitwise not");
27302730
DATA(insert OID = 1896 ( int2shl PGNSP PGUID 12 f f t f i 2 21 "21 23" _null_ _null_ _null_ int2shl - _null_ ));
2731-
DESCR("binary shift left");
2731+
DESCR("bitwise shift left");
27322732
DATA(insert OID = 1897 ( int2shr PGNSP PGUID 12 f f t f i 2 21 "21 23" _null_ _null_ _null_ int2shr - _null_ ));
2733-
DESCR("binary shift right");
2733+
DESCR("bitwise shift right");
27342734

27352735
DATA(insert OID = 1898 ( int4and PGNSP PGUID 12 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4and - _null_ ));
2736-
DESCR("binary and");
2736+
DESCR("bitwise and");
27372737
DATA(insert OID = 1899 ( int4or PGNSP PGUID 12 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4or - _null_ ));
2738-
DESCR("binary or");
2738+
DESCR("bitwise or");
27392739
DATA(insert OID = 1900 ( int4xor PGNSP PGUID 12 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4xor - _null_ ));
2740-
DESCR("binary xor");
2740+
DESCR("bitwise xor");
27412741
DATA(insert OID = 1901 ( int4not PGNSP PGUID 12 f f t f i 1 23 "23" _null_ _null_ _null_ int4not - _null_ ));
2742-
DESCR("binary not");
2742+
DESCR("bitwise not");
27432743
DATA(insert OID = 1902 ( int4shl PGNSP PGUID 12 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4shl - _null_ ));
2744-
DESCR("binary shift left");
2744+
DESCR("bitwise shift left");
27452745
DATA(insert OID = 1903 ( int4shr PGNSP PGUID 12 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4shr - _null_ ));
2746-
DESCR("binary shift right");
2746+
DESCR("bitwise shift right");
27472747

27482748
DATA(insert OID = 1904 ( int8and PGNSP PGUID 12 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8and - _null_ ));
2749-
DESCR("binary and");
2749+
DESCR("bitwise and");
27502750
DATA(insert OID = 1905 ( int8or PGNSP PGUID 12 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8or - _null_ ));
2751-
DESCR("binary or");
2751+
DESCR("bitwise or");
27522752
DATA(insert OID = 1906 ( int8xor PGNSP PGUID 12 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8xor - _null_ ));
2753-
DESCR("binary xor");
2753+
DESCR("bitwise xor");
27542754
DATA(insert OID = 1907 ( int8not PGNSP PGUID 12 f f t f i 1 20 "20" _null_ _null_ _null_ int8not - _null_ ));
2755-
DESCR("binary not");
2755+
DESCR("bitwise not");
27562756
DATA(insert OID = 1908 ( int8shl PGNSP PGUID 12 f f t f i 2 20 "20 23" _null_ _null_ _null_ int8shl - _null_ ));
2757-
DESCR("binary shift left");
2757+
DESCR("bitwise shift left");
27582758
DATA(insert OID = 1909 ( int8shr PGNSP PGUID 12 f f t f i 2 20 "20 23" _null_ _null_ _null_ int8shr - _null_ ));
2759-
DESCR("binary shift right");
2759+
DESCR("bitwise shift right");
27602760

27612761
DATA(insert OID = 1910 ( int8up PGNSP PGUID 12 f f t f i 1 20 "20" _null_ _null_ _null_ int8up - _null_ ));
27622762
DESCR("unary plus");

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy