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
7e533da4
Commit
7e533da4
authored
Jan 23, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename int4 to int32 in a few places.
parent
26aa69a2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
13 deletions
+13
-13
src/backend/commands/command.c
src/backend/commands/command.c
+2
-2
src/backend/commands/comment.c
src/backend/commands/comment.c
+1
-1
src/include/commands/sequence.h
src/include/commands/sequence.h
+6
-6
src/include/utils/date.h
src/include/utils/date.h
+2
-2
src/include/utils/timestamp.h
src/include/utils/timestamp.h
+2
-2
No files found.
src/backend/commands/command.c
View file @
7e533da4
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.11
6 2001/01/08 03:14:58 inoue
Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.11
7 2001/01/23 01:48:16 momjian
Exp $
*
* NOTES
* The PerformAddAttribute() code, like most of the relation
...
...
@@ -1446,7 +1446,7 @@ AlterTableOwner(const char *relationName, const char *newOwnerName)
{
Relation
class_rel
;
HeapTuple
tuple
;
int
4
newOwnerSysid
;
int
32
newOwnerSysid
;
Relation
idescs
[
Num_pg_class_indices
];
/*
...
...
src/backend/commands/comment.c
View file @
7e533da4
...
...
@@ -394,7 +394,7 @@ CommentDatabase(char *database, char *comment)
HeapScanDesc
scan
;
Oid
oid
;
bool
superuser
;
int
4
dba
;
int
32
dba
;
Oid
userid
;
/*** First find the tuple in pg_database for the database ***/
...
...
src/include/commands/sequence.h
View file @
7e533da4
...
...
@@ -15,12 +15,12 @@
typedef
struct
FormData_pg_sequence
{
NameData
sequence_name
;
int
4
last_value
;
int
4
increment_by
;
int
4
max_value
;
int
4
min_value
;
int
4
cache_value
;
int
4
log_cnt
;
int
32
last_value
;
int
32
increment_by
;
int
32
max_value
;
int
32
min_value
;
int
32
cache_value
;
int
32
log_cnt
;
char
is_cycled
;
char
is_called
;
}
FormData_pg_sequence
;
...
...
src/include/utils/date.h
View file @
7e533da4
...
...
@@ -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 */
int
4
zone
;
/* numeric time zone, in seconds */
int
zone
;
/* numeric time zone, in seconds */
}
TimeTzADT
;
/*
...
...
src/include/utils/timestamp.h
View file @
7e533da4
...
...
@@ -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.1
1 2000/11/06 16:05:25 thomas
Exp $
* $Id: timestamp.h,v 1.1
2 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 */
int
4
month
;
/* months and years, after time for alignment */
int
month
;
/* months and years, after time for alignment */
}
Interval
;
...
...
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