Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
3ce0236c
Commit
3ce0236c
authored
28 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Apply date patch from tiemann@cygnus.com,Michael Tiemann.
parent
162c2a6e
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/utils/adt/datetimes.c
+38
-16
38 additions, 16 deletions
src/backend/utils/adt/datetimes.c
with
38 additions
and
16 deletions
src/backend/utils/adt/datetimes.c
+
38
−
16
View file @
3ce0236c
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/datetimes.c,v 1.
8
1997/0
1/26 15:31:12 scrappy
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/datetimes.c,v 1.
9
1997/0
3/02 02:05:33 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -240,19 +240,26 @@ date_smaller(int4 dateVal1, int4 dateVal2)
int32
date_mi
(
int4
dateVal1
,
int4
dateVal2
)
{
int4
dv1
,
dv2
;
DateADT
*
date1
,
*
date2
;
int32
days
=
0
;
int
i
;
date1
=
(
DateADT
*
)
&
dateVal1
;
date2
=
(
DateADT
*
)
&
dateVal2
;
/* This circumlocution allows us to assume that date1 is always
before date2. */
dv1
=
date_smaller
(
dateVal1
,
dateVal2
);
dv2
=
date_larger
(
dateVal1
,
dateVal2
);
date1
=
(
DateADT
*
)
&
dv1
;
date2
=
(
DateADT
*
)
&
dv2
;
/* Sum number of days in each full year between date1 and date2. */
for
(
i
=
date1
->
year
+
1
;
i
<
date2
->
year
;
++
i
)
days
+=
isleap
(
i
)
?
366
:
365
;
/* Add in number of days in each full month from date1 to end of
year. */
if
(
days
)
{
/* We need to wrap around the year. Add in number of days in each
full month from date1 to end of year. */
for
(
i
=
date1
->
month
+
1
;
i
<=
12
;
++
i
)
days
+=
day_tab
[
isleap
(
date1
->
year
)][
i
-
1
];
...
...
@@ -260,12 +267,27 @@ date_mi(int4 dateVal1, int4 dateVal2)
date2. */
for
(
i
=
1
;
i
<
date2
->
month
;
++
i
)
days
+=
day_tab
[
isleap
(
date2
->
year
)][
i
-
1
];
}
else
{
/* Add in number of days in each full month from date1 to date2. */
for
(
i
=
date1
->
month
+
1
;
i
<
date2
->
month
;
++
i
)
days
+=
day_tab
[
isleap
(
date1
->
year
)][
i
-
1
];
}
if
(
days
||
date1
->
month
!=
date2
->
month
)
{
/* Add in number of days left in month for date1. */
days
+=
day_tab
[
isleap
(
date1
->
year
)][
date1
->
month
-
1
]
-
date1
->
day
;
/* Add in day of month of date2. */
days
+=
date2
->
day
;
}
else
{
/* Everything's in the same month, so just subtract the days! */
days
=
date2
->
day
-
date1
->
day
;
}
return
(
days
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment