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
7547b010
Commit
7547b010
authored
Oct 05, 2001
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define CEST as a synonym for Central European Savings Time
per Jan Varga <varga@utcru.sk> Fix up spacing and formatting.
parent
bd97e4e7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
17 deletions
+10
-17
src/backend/utils/adt/datetime.c
src/backend/utils/adt/datetime.c
+2
-9
src/backend/utils/adt/timestamp.c
src/backend/utils/adt/timestamp.c
+8
-8
No files found.
src/backend/utils/adt/datetime.c
View file @
7547b010
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.
69 2001/10/04 17:10:11 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.
70 2001/10/05 06:38:59 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -98,6 +98,7 @@ static datetkn datetktbl[] = {
{
"cat"
,
TZ
,
NEG
(
60
)},
/* Central Alaska Time */
{
"cct"
,
TZ
,
48
},
/* China Coast */
{
"cdt"
,
DTZ
,
NEG
(
30
)},
/* Central Daylight Time */
{
"cest"
,
DTZ
,
12
},
/* Central European Dayl.Time */
{
"cet"
,
TZ
,
6
},
/* Central European Time */
{
"cetdst"
,
DTZ
,
12
},
/* Central European Dayl.Time */
{
"cst"
,
TZ
,
NEG
(
36
)},
/* Central Standard Time */
...
...
@@ -772,11 +773,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
case
DTK_NOW
:
tmask
=
(
DTK_DATE_M
|
DTK_TIME_M
|
DTK_M
(
TZ
));
*
dtype
=
DTK_DATE
;
#if NOT_USED
GetCurrentTime
(
tm
);
#else
GetCurrentTimeUsec
(
tm
,
fsec
);
#endif
if
(
tzp
!=
NULL
)
*
tzp
=
CTimeZone
;
break
;
...
...
@@ -1151,11 +1148,7 @@ DecodeTimeOnly(char **field, int *ftype, int nf,
case
DTK_NOW
:
tmask
=
DTK_TIME_M
;
*
dtype
=
DTK_TIME
;
#if NOT_USED
GetCurrentTime
(
tm
);
#else
GetCurrentTimeUsec
(
tm
,
fsec
);
#endif
break
;
case
DTK_ZULU
:
...
...
src/backend/utils/adt/timestamp.c
View file @
7547b010
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.5
4 2001/10/04 14:49:57 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.5
5 2001/10/05 06:38:59 thomas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1400,8 +1400,8 @@ interval_accum(PG_FUNCTION_ARGS)
memcpy
(
&
N
,
DatumGetIntervalP
(
transdatums
[
1
]),
sizeof
(
Interval
));
newsum
=
DatumGetIntervalP
(
DirectFunctionCall2
(
interval_pl
,
IntervalPGetDatum
(
&
sumX
),
IntervalPGetDatum
(
newval
)));
IntervalPGetDatum
(
&
sumX
),
IntervalPGetDatum
(
newval
)));
N
.
time
+=
1
;
transdatums
[
0
]
=
IntervalPGetDatum
(
newsum
);
...
...
@@ -1856,7 +1856,7 @@ timestamp_trunc(PG_FUNCTION_ARGS)
if
(
VARSIZE
(
units
)
-
VARHDRSZ
>
MAXDATELEN
)
elog
(
ERROR
,
"Interval units '%s' not recognized"
,
DatumGetCString
(
DirectFunctionCall1
(
textout
,
PointerGetDatum
(
units
))));
PointerGetDatum
(
units
))));
up
=
VARDATA
(
units
);
lp
=
lowunits
;
for
(
i
=
0
;
i
<
(
VARSIZE
(
units
)
-
VARHDRSZ
);
i
++
)
...
...
@@ -1943,7 +1943,7 @@ timestamptz_trunc(PG_FUNCTION_ARGS)
if
(
VARSIZE
(
units
)
-
VARHDRSZ
>
MAXDATELEN
)
elog
(
ERROR
,
"Interval units '%s' not recognized"
,
DatumGetCString
(
DirectFunctionCall1
(
textout
,
PointerGetDatum
(
units
))));
PointerGetDatum
(
units
))));
up
=
VARDATA
(
units
);
lp
=
lowunits
;
for
(
i
=
0
;
i
<
(
VARSIZE
(
units
)
-
VARHDRSZ
);
i
++
)
...
...
@@ -2032,7 +2032,7 @@ interval_trunc(PG_FUNCTION_ARGS)
if
(
VARSIZE
(
units
)
-
VARHDRSZ
>
MAXDATELEN
)
elog
(
ERROR
,
"Interval units '%s' not recognized"
,
DatumGetCString
(
DirectFunctionCall1
(
textout
,
PointerGetDatum
(
units
))));
PointerGetDatum
(
units
))));
up
=
VARDATA
(
units
);
lp
=
lowunits
;
for
(
i
=
0
;
i
<
(
VARSIZE
(
units
)
-
VARHDRSZ
);
i
++
)
...
...
@@ -2569,7 +2569,7 @@ interval_part(PG_FUNCTION_ARGS)
default:
elog
(
ERROR
,
"Interval units '%s' not supported"
,
DatumGetCString
(
DirectFunctionCall1
(
textout
,
PointerGetDatum
(
units
))));
PointerGetDatum
(
units
))));
result
=
0
;
}
...
...
@@ -2594,7 +2594,7 @@ interval_part(PG_FUNCTION_ARGS)
{
elog
(
ERROR
,
"Interval units '%s' not recognized"
,
DatumGetCString
(
DirectFunctionCall1
(
textout
,
PointerGetDatum
(
units
))));
PointerGetDatum
(
units
))));
result
=
0
;
}
...
...
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