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
b3ce105b
Commit
b3ce105b
authored
Nov 16, 1996
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add prototype for new datetime functions.
parent
7085aba5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/include/utils/builtins.h
src/include/utils/builtins.h
+6
-1
No files found.
src/include/utils/builtins.h
View file @
b3ce105b
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: builtins.h,v 1.
7 1996/11/10 03:06:18
momjian Exp $
* $Id: builtins.h,v 1.
8 1996/11/16 04:59:10
momjian Exp $
*
* NOTES
* This should normally only be included by fmgr.h.
...
...
@@ -454,6 +454,11 @@ extern int date_le(int4 dateVal1, int4 dateVal2);
extern
int
date_gt
(
int4
dateVal1
,
int4
dateVal2
);
extern
int
date_ge
(
int4
dateVal1
,
int4
dateVal2
);
extern
int
date_cmp
(
int4
dateVal1
,
int4
dateVal2
);
extern
int4
date_larger
(
int4
dateVal1
,
int4
dateVal2
);
extern
int4
date_smaller
(
int4
dateVal1
,
int4
dateVal2
);
extern
int32
date_mi
(
int4
dateVal1
,
int4
dateVal2
);
extern
int4
date_pli
(
int4
dateVal
,
int32
days
);
extern
int4
date_mii
(
int4
dateVal
,
int32
days
);
extern
char
*
time_in
(
char
*
timestr
);
extern
char
*
time_out
(
TimeADT
*
time
);
extern
int
time_eq
(
TimeADT
*
time1
,
TimeADT
*
time2
);
...
...
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