summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorBruce Momjian2001-01-23 01:48:17 +0000
committerBruce Momjian2001-01-23 01:48:17 +0000
commit7e533da492474002ecc75e1aa3256d629545dfb3 (patch)
tree4789687862e910b2aa74422edb22afab886bceef /src/include
parent26aa69a2f69b4e5cfb87ecae3f133dccebd22c85 (diff)
Rename int4 to int32 in a few places.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/commands/sequence.h12
-rw-r--r--src/include/utils/date.h4
-rw-r--r--src/include/utils/timestamp.h4
3 files changed, 10 insertions, 10 deletions
diff --git a/src/include/commands/sequence.h b/src/include/commands/sequence.h
index 547c0ec8b9a..31925b395af 100644
--- a/src/include/commands/sequence.h
+++ b/src/include/commands/sequence.h
@@ -15,12 +15,12 @@
typedef struct FormData_pg_sequence
{
NameData sequence_name;
- int4 last_value;
- int4 increment_by;
- int4 max_value;
- int4 min_value;
- int4 cache_value;
- int4 log_cnt;
+ int32 last_value;
+ int32 increment_by;
+ int32 max_value;
+ int32 min_value;
+ int32 cache_value;
+ int32 log_cnt;
char is_cycled;
char is_called;
} FormData_pg_sequence;
diff --git a/src/include/utils/date.h b/src/include/utils/date.h
index a964d09a309..2cef2982fdc 100644
--- a/src/include/utils/date.h
+++ b/src/include/utils/date.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: date.h,v 1.7 2000/12/03 14:51:11 thomas Exp $
+ * $Id: date.h,v 1.8 2001/01/23 01:48:17 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -25,7 +25,7 @@ typedef struct
{
double time; /* all time units other than months and
* years */
- int4 zone; /* numeric time zone, in seconds */
+ int zone; /* numeric time zone, in seconds */
} TimeTzADT;
/*
diff --git a/src/include/utils/timestamp.h b/src/include/utils/timestamp.h
index e67a1ebcbd9..9e0f8807f4b 100644
--- a/src/include/utils/timestamp.h
+++ b/src/include/utils/timestamp.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: timestamp.h,v 1.11 2000/11/06 16:05:25 thomas Exp $
+ * $Id: timestamp.h,v 1.12 2001/01/23 01:48:17 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -36,7 +36,7 @@ typedef double Timestamp;
typedef struct
{
double time; /* all time units other than months and years */
- int4 month; /* months and years, after time for alignment */
+ int month; /* months and years, after time for alignment */
} Interval;