Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4807619

Browse files
committed
Renumber bit/boolean aggregates to remove duplicates.
1 parentfafd564 commit4807619

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/2615:26:03 momjian Exp $
11+
* $PostgreSQL: pgsql/src/include/catalog/pg_aggregate.h,v 1.44 2004/05/2618: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 (2519booland_statefunc-16_null_ ));
156156

157157
/* bitwise integer */
158-
DATA(insert (2535int2and-21_null_ ));
159-
DATA(insert (2536int2or-21_null_ ));
160-
DATA(insert (2537int4and-23_null_ ));
161-
DATA(insert (2538int4or-23_null_ ));
162-
DATA(insert (2539int8and-20_null_ ));
163-
DATA(insert (2540int8or-20_null_ ));
164-
DATA(insert (2541bitand-1560_null_ ));
165-
DATA(insert (2542bitor-1560_null_ ));
158+
DATA(insert (2236int2and-21_null_ ));
159+
DATA(insert (2237int2or-21_null_ ));
160+
DATA(insert (2238int4and-23_null_ ));
161+
DATA(insert (2239int4or-23_null_ ));
162+
DATA(insert (2240int8and-20_null_ ));
163+
DATA(insert (2241int8or-20_null_ ));
164+
DATA(insert (2242bitand-1560_null_ ));
165+
DATA(insert (2243bitor-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/2615:26:04 momjian Exp $
10+
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.331 2004/05/2618: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(insertOID=2535 (bit_andPGNSPPGUID12tfffi121"21"_null_aggregate_dummy-_null_));
3555+
DATA(insertOID=2236 (bit_andPGNSPPGUID12tfffi121"21"_null_aggregate_dummy-_null_));
35563556
DESCR("bitwise-and smallint aggregate");
3557-
DATA(insertOID=2536 (bit_orPGNSPPGUID12tfffi121"21"_null_aggregate_dummy-_null_));
3557+
DATA(insertOID=2237 (bit_orPGNSPPGUID12tfffi121"21"_null_aggregate_dummy-_null_));
35583558
DESCR("bitwise-or smallint aggregate");
35593559

3560-
DATA(insertOID=2537 (bit_andPGNSPPGUID12tfffi123"23"_null_aggregate_dummy-_null_));
3560+
DATA(insertOID=2238 (bit_andPGNSPPGUID12tfffi123"23"_null_aggregate_dummy-_null_));
35613561
DESCR("bitwise-and integer aggregate");
3562-
DATA(insertOID=2538 (bit_orPGNSPPGUID12tfffi123"23"_null_aggregate_dummy-_null_));
3562+
DATA(insertOID=2239 (bit_orPGNSPPGUID12tfffi123"23"_null_aggregate_dummy-_null_));
35633563
DESCR("bitwise-or integer aggregate");
35643564

3565-
DATA(insertOID=2539 (bit_andPGNSPPGUID12tfffi120"20"_null_aggregate_dummy-_null_));
3565+
DATA(insertOID=2240 (bit_andPGNSPPGUID12tfffi120"20"_null_aggregate_dummy-_null_));
35663566
DESCR("bitwise-and bigint aggregate");
3567-
DATA(insertOID=2540 (bit_orPGNSPPGUID12tfffi120"20"_null_aggregate_dummy-_null_));
3567+
DATA(insertOID=2241 (bit_orPGNSPPGUID12tfffi120"20"_null_aggregate_dummy-_null_));
35683568
DESCR("bitwise-or bigint aggregate");
35693569

3570-
DATA(insertOID=2541 (bit_andPGNSPPGUID12tfffi11560"1560"_null_aggregate_dummy-_null_));
3570+
DATA(insertOID=2242 (bit_andPGNSPPGUID12tfffi11560"1560"_null_aggregate_dummy-_null_));
35713571
DESCR("bitwise-and bit aggregate");
3572-
DATA(insertOID=2542 (bit_orPGNSPPGUID12tfffi11560"1560"_null_aggregate_dummy-_null_));
3572+
DATA(insertOID=2243 (bit_orPGNSPPGUID12tfffi11560"1560"_null_aggregate_dummy-_null_));
35733573
DESCR("bitwise-or bit aggregate");
35743574

35753575
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp