? config.log ? config.cache ? config.status ? GNUmakefile ? src/Makefile.custom ? src/GNUmakefile ? src/Makefile.global ? src/log ? src/crtags ? src/backend/postgres ? src/backend/catalog/global.bki ? src/backend/catalog/global.description ? src/backend/catalog/template1.bki ? src/backend/catalog/template1.description ? src/backend/port/Makefile ? src/bin/initdb/initdb ? src/bin/initlocation/initlocation ? src/bin/ipcclean/ipcclean ? src/bin/pg_config/pg_config ? src/bin/pg_ctl/pg_ctl ? src/bin/pg_dump/pg_dump ? src/bin/pg_dump/pg_restore ? src/bin/pg_dump/pg_dumpall ? src/bin/pg_id/pg_id ? src/bin/pg_passwd/pg_passwd ? src/bin/pgaccess/pgaccess ? src/bin/pgtclsh/Makefile.tkdefs ? src/bin/pgtclsh/Makefile.tcldefs ? src/bin/pgtclsh/pgtclsh ? src/bin/pgtclsh/pgtksh ? src/bin/psql/psql ? src/bin/scripts/createlang ? src/include/config.h ? src/include/stamp-h ? src/interfaces/ecpg/lib/libecpg.so.3.2.0 ? src/interfaces/ecpg/preproc/ecpg ? src/interfaces/libpgeasy/libpgeasy.so.2.1 ? src/interfaces/libpgtcl/libpgtcl.so.2.1 ? src/interfaces/libpq/libpq.so.2.1 ? src/interfaces/perl5/blib ? src/interfaces/perl5/Makefile ? src/interfaces/perl5/pm_to_blib ? src/interfaces/perl5/Pg.c ? src/interfaces/perl5/Pg.bs ? src/pl/plperl/blib ? src/pl/plperl/Makefile ? src/pl/plperl/pm_to_blib ? src/pl/plperl/SPI.c ? src/pl/plperl/plperl.bs ? src/pl/plpgsql/src/libplpgsql.so.1.0 ? src/pl/tcl/Makefile.tcldefs Index: src/backend/commands/command.c =================================================================== RCS file: /home/projects/pgsql/cvsroot/pgsql/src/backend/commands/command.c,v retrieving revision 1.116 diff -c -r1.116 command.c *** src/backend/commands/command.c 2001/01/08 03:14:58 1.116 --- src/backend/commands/command.c 2001/01/23 01:45:36 *************** *** 1446,1452 **** { Relation class_rel; HeapTuple tuple; ! int4 newOwnerSysid; Relation idescs[Num_pg_class_indices]; /* --- 1446,1452 ---- { Relation class_rel; HeapTuple tuple; ! int32 newOwnerSysid; Relation idescs[Num_pg_class_indices]; /* Index: src/backend/commands/comment.c =================================================================== RCS file: /home/projects/pgsql/cvsroot/pgsql/src/backend/commands/comment.c,v retrieving revision 1.24 diff -c -r1.24 comment.c *** src/backend/commands/comment.c 2000/11/16 22:30:18 1.24 --- src/backend/commands/comment.c 2001/01/23 01:45:36 *************** *** 394,400 **** HeapScanDesc scan; Oid oid; bool superuser; ! int4 dba; Oid userid; /*** First find the tuple in pg_database for the database ***/ --- 394,400 ---- HeapScanDesc scan; Oid oid; bool superuser; ! int32 dba; Oid userid; /*** First find the tuple in pg_database for the database ***/ Index: src/include/commands/sequence.h =================================================================== RCS file: /home/projects/pgsql/cvsroot/pgsql/src/include/commands/sequence.h,v retrieving revision 1.13 diff -c -r1.13 sequence.h *** src/include/commands/sequence.h 2000/12/28 13:00:28 1.13 --- src/include/commands/sequence.h 2001/01/23 01:45:47 *************** *** 15,26 **** 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; char is_cycled; char is_called; } FormData_pg_sequence; --- 15,26 ---- typedef struct FormData_pg_sequence { NameData sequence_name; ! 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; Index: src/include/utils/date.h =================================================================== RCS file: /home/projects/pgsql/cvsroot/pgsql/src/include/utils/date.h,v retrieving revision 1.7 diff -c -r1.7 date.h *** src/include/utils/date.h 2000/12/03 14:51:11 1.7 --- src/include/utils/date.h 2001/01/23 01:45:48 *************** *** 25,31 **** { double time; /* all time units other than months and * years */ ! int4 zone; /* numeric time zone, in seconds */ } TimeTzADT; /* --- 25,31 ---- { double time; /* all time units other than months and * years */ ! int zone; /* numeric time zone, in seconds */ } TimeTzADT; /* Index: src/include/utils/timestamp.h =================================================================== RCS file: /home/projects/pgsql/cvsroot/pgsql/src/include/utils/timestamp.h,v retrieving revision 1.11 diff -c -r1.11 timestamp.h *** src/include/utils/timestamp.h 2000/11/06 16:05:25 1.11 --- src/include/utils/timestamp.h 2001/01/23 01:45:48 *************** *** 36,42 **** typedef struct { double time; /* all time units other than months and years */ ! int4 month; /* months and years, after time for alignment */ } Interval; --- 36,42 ---- typedef struct { double time; /* all time units other than months and years */ ! int month; /* months and years, after time for alignment */ } Interval;