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
ba235889
Commit
ba235889
authored
Oct 15, 1997
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix final function for cash avg() aggregate.
Wrong function referenced in previous versions.
parent
14f81d8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/include/catalog/pg_aggregate.h
src/include/catalog/pg_aggregate.h
+7
-7
No files found.
src/include/catalog/pg_aggregate.h
View file @
ba235889
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_aggregate.h,v 1.1
1 1997/09/08 21:51:27 momjian
Exp $
* $Id: pg_aggregate.h,v 1.1
2 1997/10/15 01:08:25 thomas
Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -88,12 +88,12 @@ typedef FormData_pg_aggregate *Form_pg_aggregate;
* ---------------
*/
DATA
(
insert
OID
=
0
(
avg
PGUID
int4pl
int4inc
int4div
23
23
23
23
_null_
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
int2pl
int2inc
int2div
21
21
21
21
_null_
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
float4pl
float4inc
float4div
700
700
700
700
_null_
0
.
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
float8pl
float8inc
float8div
701
701
701
701
_null_
0
.
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
cash_pl
float8inc
cash_div
790
790
701
790
_null_
0
.
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
timespan_pl
float8inc
timespan_div
1186
1186
701
1186
_null_
0
.
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
int4pl
int4inc
int4div
23
23
23
23
_null_
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
int2pl
int2inc
int2div
21
21
21
21
_null_
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
float4pl
float4inc
float4div
700
700
700
700
_null_
0
.
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
float8pl
float8inc
float8div
701
701
701
701
_null_
0
.
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
cash_pl
float8inc
cash_div_flt8
790
790
701
790
_null_
0
.
0
));
DATA
(
insert
OID
=
0
(
avg
PGUID
timespan_pl
float8inc
timespan_div
1186
1186
701
1186
_null_
0
.
0
));
DATA
(
insert
OID
=
0
(
sum
PGUID
int4pl
-
-
23
23
0
23
_null_
_null_
));
DATA
(
insert
OID
=
0
(
sum
PGUID
int2pl
-
-
21
21
0
21
_null_
_null_
));
...
...
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