Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
48076192
Commit
48076192
authored
May 26, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renumber bit/boolean aggregates to remove duplicates.
parent
fafd5640
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
18 deletions
+18
-18
src/include/catalog/pg_aggregate.h
src/include/catalog/pg_aggregate.h
+9
-9
src/include/catalog/pg_proc.h
src/include/catalog/pg_proc.h
+9
-9
No files found.
src/include/catalog/pg_aggregate.h
View file @
48076192
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/catalog/pg_aggregate.h,v 1.4
3 2004/05/26 15:26:03
momjian Exp $
* $PostgreSQL: pgsql/src/include/catalog/pg_aggregate.h,v 1.4
4 2004/05/26 18:14:36
momjian Exp $
*
*
* NOTES
* NOTES
* the genbki.sh script reads this file and generates .bki
* the genbki.sh script reads this file and generates .bki
...
@@ -155,14 +155,14 @@ DATA(insert ( 2518 boolor_statefunc - 16 _null_ ));
...
@@ -155,14 +155,14 @@ DATA(insert ( 2518 boolor_statefunc - 16 _null_ ));
DATA
(
insert
(
2519
booland_statefunc
-
16
_null_
));
DATA
(
insert
(
2519
booland_statefunc
-
16
_null_
));
/* bitwise integer */
/* bitwise integer */
DATA
(
insert
(
2
535
int2and
-
21
_null_
));
DATA
(
insert
(
2
236
int2and
-
21
_null_
));
DATA
(
insert
(
2
536
int2or
-
21
_null_
));
DATA
(
insert
(
2
237
int2or
-
21
_null_
));
DATA
(
insert
(
2
537
int4and
-
23
_null_
));
DATA
(
insert
(
2
238
int4and
-
23
_null_
));
DATA
(
insert
(
2
538
int4or
-
23
_null_
));
DATA
(
insert
(
2
239
int4or
-
23
_null_
));
DATA
(
insert
(
2
539
int8and
-
20
_null_
));
DATA
(
insert
(
2
240
int8and
-
20
_null_
));
DATA
(
insert
(
2
540
int8or
-
20
_null_
));
DATA
(
insert
(
2
241
int8or
-
20
_null_
));
DATA
(
insert
(
2
541
bitand
-
1560
_null_
));
DATA
(
insert
(
2
242
bitand
-
1560
_null_
));
DATA
(
insert
(
2
542
bitor
-
1560
_null_
));
DATA
(
insert
(
2
243
bitor
-
1560
_null_
));
/*
/*
* prototypes for functions in pg_aggregate.c
* prototypes for functions in pg_aggregate.c
...
...
src/include/catalog/pg_proc.h
View file @
48076192
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.33
0 2004/05/26 15:26:04
momjian Exp $
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.33
1 2004/05/26 18:14:36
momjian Exp $
*
*
* NOTES
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
* 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
...
@@ -3552,24 +3552,24 @@ DATA(insert OID = 2519 ( every PGNSP PGUID 12 t f f f i 1 16 "16" _n
DESCR
(
"boolean-and aggregate"
);
DESCR
(
"boolean-and aggregate"
);
/* bitwise integer aggregates */
/* bitwise integer aggregates */
DATA
(
insert
OID
=
2
535
(
bit_and
PGNSP
PGUID
12
t
f
f
f
i
1
21
"21"
_null_
aggregate_dummy
-
_null_
));
DATA
(
insert
OID
=
2
236
(
bit_and
PGNSP
PGUID
12
t
f
f
f
i
1
21
"21"
_null_
aggregate_dummy
-
_null_
));
DESCR
(
"bitwise-and smallint aggregate"
);
DESCR
(
"bitwise-and smallint aggregate"
);
DATA
(
insert
OID
=
2
536
(
bit_or
PGNSP
PGUID
12
t
f
f
f
i
1
21
"21"
_null_
aggregate_dummy
-
_null_
));
DATA
(
insert
OID
=
2
237
(
bit_or
PGNSP
PGUID
12
t
f
f
f
i
1
21
"21"
_null_
aggregate_dummy
-
_null_
));
DESCR
(
"bitwise-or smallint aggregate"
);
DESCR
(
"bitwise-or smallint aggregate"
);
DATA
(
insert
OID
=
2
537
(
bit_and
PGNSP
PGUID
12
t
f
f
f
i
1
23
"23"
_null_
aggregate_dummy
-
_null_
));
DATA
(
insert
OID
=
2
238
(
bit_and
PGNSP
PGUID
12
t
f
f
f
i
1
23
"23"
_null_
aggregate_dummy
-
_null_
));
DESCR
(
"bitwise-and integer aggregate"
);
DESCR
(
"bitwise-and integer aggregate"
);
DATA
(
insert
OID
=
2
538
(
bit_or
PGNSP
PGUID
12
t
f
f
f
i
1
23
"23"
_null_
aggregate_dummy
-
_null_
));
DATA
(
insert
OID
=
2
239
(
bit_or
PGNSP
PGUID
12
t
f
f
f
i
1
23
"23"
_null_
aggregate_dummy
-
_null_
));
DESCR
(
"bitwise-or integer aggregate"
);
DESCR
(
"bitwise-or integer aggregate"
);
DATA
(
insert
OID
=
2
539
(
bit_and
PGNSP
PGUID
12
t
f
f
f
i
1
20
"20"
_null_
aggregate_dummy
-
_null_
));
DATA
(
insert
OID
=
2
240
(
bit_and
PGNSP
PGUID
12
t
f
f
f
i
1
20
"20"
_null_
aggregate_dummy
-
_null_
));
DESCR
(
"bitwise-and bigint aggregate"
);
DESCR
(
"bitwise-and bigint aggregate"
);
DATA
(
insert
OID
=
2
540
(
bit_or
PGNSP
PGUID
12
t
f
f
f
i
1
20
"20"
_null_
aggregate_dummy
-
_null_
));
DATA
(
insert
OID
=
2
241
(
bit_or
PGNSP
PGUID
12
t
f
f
f
i
1
20
"20"
_null_
aggregate_dummy
-
_null_
));
DESCR
(
"bitwise-or bigint aggregate"
);
DESCR
(
"bitwise-or bigint aggregate"
);
DATA
(
insert
OID
=
2
541
(
bit_and
PGNSP
PGUID
12
t
f
f
f
i
1
1560
"1560"
_null_
aggregate_dummy
-
_null_
));
DATA
(
insert
OID
=
2
242
(
bit_and
PGNSP
PGUID
12
t
f
f
f
i
1
1560
"1560"
_null_
aggregate_dummy
-
_null_
));
DESCR
(
"bitwise-and bit aggregate"
);
DESCR
(
"bitwise-and bit aggregate"
);
DATA
(
insert
OID
=
2
542
(
bit_or
PGNSP
PGUID
12
t
f
f
f
i
1
1560
"1560"
_null_
aggregate_dummy
-
_null_
));
DATA
(
insert
OID
=
2
243
(
bit_or
PGNSP
PGUID
12
t
f
f
f
i
1
1560
"1560"
_null_
aggregate_dummy
-
_null_
));
DESCR
(
"bitwise-or bit aggregate"
);
DESCR
(
"bitwise-or bit aggregate"
);
/*
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment