Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 56970c1

Browse files
committed
Fix some int4->int32.
1 parent b686fb5 commit 56970c1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/include/utils/date.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: date.h,v 1.8 2001/01/23 01:48:17 momjian Exp $
10+
* $Id: date.h,v 1.9 2001/01/23 03:10:25 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -25,7 +25,7 @@ typedef struct
2525
{
2626
double time; /* all time units other than months and
2727
* years */
28-
int zone; /* numeric time zone, in seconds */
28+
int32 zone; /* numeric time zone, in seconds */
2929
} TimeTzADT;
3030

3131
/*

src/include/utils/timestamp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: timestamp.h,v 1.12 2001/01/23 01:48:17 momjian Exp $
9+
* $Id: timestamp.h,v 1.13 2001/01/23 03:10:25 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -36,7 +36,7 @@ typedef double Timestamp;
3636
typedef struct
3737
{
3838
double time; /* all time units other than months and years */
39-
int month; /* months and years, after time for alignment */
39+
int32 month; /* months and years, after time for alignment */
4040
} Interval;
4141

4242

0 commit comments

Comments
 (0)