Skip to content

Commit 4807619

Browse files
committed
Renumber bit/boolean aggregates to remove duplicates.
1 parent fafd564 commit 4807619

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

src/include/catalog/pg_aggregate.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
99
* Portions Copyright (c) 1994, Regents of the University of California
1010
*
11-
* $PostgreSQL: pgsql/src/include/catalog/pg_aggregate.h,v 1.43 2004/05/26 15:26:03 momjian Exp $
11+
* $PostgreSQL: pgsql/src/include/catalog/pg_aggregate.h,v 1.44 2004/05/26 18:14:36 momjian Exp $
1212
*
1313
* NOTES
1414
* the genbki.sh script reads this file and generates .bki
@@ -155,14 +155,14 @@ DATA(insert ( 2518 boolor_statefunc - 16 _null_ ));
155155
DATA(insert ( 2519 booland_statefunc - 16 _null_ ));
156156

157157
/* bitwise integer */
158-
DATA(insert ( 2535 int2and - 21 _null_ ));
159-
DATA(insert ( 2536 int2or - 21 _null_ ));
160-
DATA(insert ( 2537 int4and - 23 _null_ ));
161-
DATA(insert ( 2538 int4or - 23 _null_ ));
162-
DATA(insert ( 2539 int8and - 20 _null_ ));
163-
DATA(insert ( 2540 int8or - 20 _null_ ));
164-
DATA(insert ( 2541 bitand - 1560 _null_ ));
165-
DATA(insert ( 2542 bitor - 1560 _null_ ));
158+
DATA(insert ( 2236 int2and - 21 _null_ ));
159+
DATA(insert ( 2237 int2or - 21 _null_ ));
160+
DATA(insert ( 2238 int4and - 23 _null_ ));
161+
DATA(insert ( 2239 int4or - 23 _null_ ));
162+
DATA(insert ( 2240 int8and - 20 _null_ ));
163+
DATA(insert ( 2241 int8or - 20 _null_ ));
164+
DATA(insert ( 2242 bitand - 1560 _null_ ));
165+
DATA(insert ( 2243 bitor - 1560 _null_ ));
166166

167167
/*
168168
* prototypes for functions in pg_aggregate.c

src/include/catalog/pg_proc.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2003, 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.330 2004/05/26 15:26:04 momjian Exp $
10+
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.331 2004/05/26 18:14:36 momjian Exp $
1111
*
1212
* NOTES
1313
* The script catalog/genbki.sh reads this file and generates .bki
@@ -3552,24 +3552,24 @@ DATA(insert OID = 2519 ( every PGNSP PGUID 12 t f f f i 1 16 "16" _n
35523552
DESCR("boolean-and aggregate");
35533553

35543554
/* bitwise integer aggregates */
3555-
DATA(insert OID = 2535 ( bit_and PGNSP PGUID 12 t f f f i 1 21 "21" _null_ aggregate_dummy - _null_));
3555+
DATA(insert OID = 2236 ( bit_and PGNSP PGUID 12 t f f f i 1 21 "21" _null_ aggregate_dummy - _null_));
35563556
DESCR("bitwise-and smallint aggregate");
3557-
DATA(insert OID = 2536 ( bit_or PGNSP PGUID 12 t f f f i 1 21 "21" _null_ aggregate_dummy - _null_));
3557+
DATA(insert OID = 2237 ( bit_or PGNSP PGUID 12 t f f f i 1 21 "21" _null_ aggregate_dummy - _null_));
35583558
DESCR("bitwise-or smallint aggregate");
35593559

3560-
DATA(insert OID = 2537 ( bit_and PGNSP PGUID 12 t f f f i 1 23 "23" _null_ aggregate_dummy - _null_));
3560+
DATA(insert OID = 2238 ( bit_and PGNSP PGUID 12 t f f f i 1 23 "23" _null_ aggregate_dummy - _null_));
35613561
DESCR("bitwise-and integer aggregate");
3562-
DATA(insert OID = 2538 ( bit_or PGNSP PGUID 12 t f f f i 1 23 "23" _null_ aggregate_dummy - _null_));
3562+
DATA(insert OID = 2239 ( bit_or PGNSP PGUID 12 t f f f i 1 23 "23" _null_ aggregate_dummy - _null_));
35633563
DESCR("bitwise-or integer aggregate");
35643564

3565-
DATA(insert OID = 2539 ( bit_and PGNSP PGUID 12 t f f f i 1 20 "20" _null_ aggregate_dummy - _null_));
3565+
DATA(insert OID = 2240 ( bit_and PGNSP PGUID 12 t f f f i 1 20 "20" _null_ aggregate_dummy - _null_));
35663566
DESCR("bitwise-and bigint aggregate");
3567-
DATA(insert OID = 2540 ( bit_or PGNSP PGUID 12 t f f f i 1 20 "20" _null_ aggregate_dummy - _null_));
3567+
DATA(insert OID = 2241 ( bit_or PGNSP PGUID 12 t f f f i 1 20 "20" _null_ aggregate_dummy - _null_));
35683568
DESCR("bitwise-or bigint aggregate");
35693569

3570-
DATA(insert OID = 2541 ( bit_and PGNSP PGUID 12 t f f f i 1 1560 "1560" _null_ aggregate_dummy - _null_));
3570+
DATA(insert OID = 2242 ( bit_and PGNSP PGUID 12 t f f f i 1 1560 "1560" _null_ aggregate_dummy - _null_));
35713571
DESCR("bitwise-and bit aggregate");
3572-
DATA(insert OID = 2542 ( bit_or PGNSP PGUID 12 t f f f i 1 1560 "1560" _null_ aggregate_dummy - _null_));
3572+
DATA(insert OID = 2243 ( bit_or PGNSP PGUID 12 t f f f i 1 1560 "1560" _null_ aggregate_dummy - _null_));
35733573
DESCR("bitwise-or bit aggregate");
35743574

35753575
/*

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