Fix some int4->int32.
This commit is contained in:
parent
b686fb5bf1
commit
56970c1bc0
@ -7,7 +7,7 @@
|
|||||||
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: date.h,v 1.8 2001/01/23 01:48:17 momjian Exp $
|
* $Id: date.h,v 1.9 2001/01/23 03:10:25 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -25,7 +25,7 @@ typedef struct
|
|||||||
{
|
{
|
||||||
double time; /* all time units other than months and
|
double time; /* all time units other than months and
|
||||||
* years */
|
* years */
|
||||||
int zone; /* numeric time zone, in seconds */
|
int32 zone; /* numeric time zone, in seconds */
|
||||||
} TimeTzADT;
|
} TimeTzADT;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: timestamp.h,v 1.12 2001/01/23 01:48:17 momjian Exp $
|
* $Id: timestamp.h,v 1.13 2001/01/23 03:10:25 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -36,7 +36,7 @@ typedef double Timestamp;
|
|||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
double time; /* all time units other than months and years */
|
double time; /* all time units other than months and years */
|
||||||
int month; /* months and years, after time for alignment */
|
int32 month; /* months and years, after time for alignment */
|
||||||
} Interval;
|
} Interval;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user