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
d9ef7e9e
Commit
d9ef7e9e
authored
Nov 06, 2000
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for AT TIME ZONE syntax.
parent
07272c6f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
src/include/utils/timestamp.h
src/include/utils/timestamp.h
+4
-5
No files found.
src/include/utils/timestamp.h
View file @
d9ef7e9e
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: timestamp.h,v 1.1
0 2000/08/29 04:41:48 momjian
Exp $
* $Id: timestamp.h,v 1.1
1 2000/11/06 16:05:25 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -35,10 +35,8 @@ typedef double Timestamp;
typedef
struct
{
double
time
;
/* all time units other than months and
* years */
int4
month
;
/* months and years, after time for
* alignment */
double
time
;
/* all time units other than months and years */
int4
month
;
/* months and years, after time for alignment */
}
Interval
;
...
...
@@ -164,6 +162,7 @@ extern Datum interval_trunc(PG_FUNCTION_ARGS);
extern
Datum
timestamp_part
(
PG_FUNCTION_ARGS
);
extern
Datum
interval_part
(
PG_FUNCTION_ARGS
);
extern
Datum
timestamp_zone
(
PG_FUNCTION_ARGS
);
extern
Datum
timestamp_izone
(
PG_FUNCTION_ARGS
);
extern
Datum
interval_um
(
PG_FUNCTION_ARGS
);
extern
Datum
interval_pl
(
PG_FUNCTION_ARGS
);
...
...
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