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
b3d7af46
Commit
b3d7af46
authored
Jan 22, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix sloppy comment.
parent
c4d0ff32
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/utils/adt/date.c
src/backend/utils/adt/date.c
+2
-2
src/backend/utils/adt/timestamp.c
src/backend/utils/adt/timestamp.c
+3
-3
No files found.
src/backend/utils/adt/date.c
View file @
b3d7af46
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.7
5 2003/01/09 01:06:57
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.7
6 2003/01/22 20:44:20
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -656,7 +656,7 @@ AdjustTimeForTypmod(TimeADT *time, int32 typmod)
...
@@ -656,7 +656,7 @@ AdjustTimeForTypmod(TimeADT *time, int32 typmod)
/*
/*
* Note: this round-to-nearest code is not completely consistent
* Note: this round-to-nearest code is not completely consistent
* about rounding values that are exactly halfway between integral
* about rounding values that are exactly halfway between integral
* values. On most platforms, rint() will implement round-to-nearest,
* values. On most platforms, rint() will implement round-to-nearest
-even
,
* but the integer code always rounds up (away from zero). Is it
* but the integer code always rounds up (away from zero). Is it
* worth trying to be consistent?
* worth trying to be consistent?
*/
*/
...
...
src/backend/utils/adt/timestamp.c
View file @
b3d7af46
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.7
6 2003/01/09 01:06:57
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.7
7 2003/01/22 20:44:20
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -206,7 +206,7 @@ AdjustTimestampForTypmod(Timestamp *time, int32 typmod)
...
@@ -206,7 +206,7 @@ AdjustTimestampForTypmod(Timestamp *time, int32 typmod)
/*
/*
* Note: this round-to-nearest code is not completely consistent
* Note: this round-to-nearest code is not completely consistent
* about rounding values that are exactly halfway between integral
* about rounding values that are exactly halfway between integral
* values. On most platforms, rint() will implement round-to-nearest,
* values. On most platforms, rint() will implement round-to-nearest
-even
,
* but the integer code always rounds up (away from zero). Is it
* but the integer code always rounds up (away from zero). Is it
* worth trying to be consistent?
* worth trying to be consistent?
*/
*/
...
@@ -677,7 +677,7 @@ AdjustIntervalForTypmod(Interval *interval, int32 typmod)
...
@@ -677,7 +677,7 @@ AdjustIntervalForTypmod(Interval *interval, int32 typmod)
/*
/*
* Note: this round-to-nearest code is not completely consistent
* Note: this round-to-nearest code is not completely consistent
* about rounding values that are exactly halfway between integral
* about rounding values that are exactly halfway between integral
* values. On most platforms, rint() will implement round-to-nearest,
* values. On most platforms, rint() will implement round-to-nearest
-even
,
* but the integer code always rounds up (away from zero). Is it
* but the integer code always rounds up (away from zero). Is it
* worth trying to be consistent?
* worth trying to be consistent?
*/
*/
...
...
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