diff options
Diffstat (limited to 'src/include/catalog/pg_depend.h')
| -rw-r--r-- | src/include/catalog/pg_depend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_depend.h b/src/include/catalog/pg_depend.h index e56dd1ad3d..f547e815b7 100644 --- a/src/include/catalog/pg_depend.h +++ b/src/include/catalog/pg_depend.h @@ -37,14 +37,14 @@ CATALOG(pg_depend,2608) BKI_WITHOUT_OIDS */ Oid classid; /* OID of table containing object */ Oid objid; /* OID of object itself */ - int4 objsubid; /* column number, or 0 if not used */ + int32 objsubid; /* column number, or 0 if not used */ /* * Identification of the independent (referenced) object. */ Oid refclassid; /* OID of table containing object */ Oid refobjid; /* OID of object itself */ - int4 refobjsubid; /* column number, or 0 if not used */ + int32 refobjsubid; /* column number, or 0 if not used */ /* * Precise semantics of the relationship are specified by the deptype |
