1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-28 11:55:03 +03:00

Change owner from oid to int4 type.

This commit is contained in:
Bruce Momjian
1998-08-11 18:28:49 +00:00
parent 8ed36c3dba
commit 79c8d2e3a0
20 changed files with 83 additions and 91 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.45 1998/08/01 15:26:29 vadim Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.46 1998/08/11 18:28:22 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1063,7 +1063,7 @@ formrdesc(char *relationName,
}
else
{
relation->rd_rel->relowner = InvalidOid; /* XXX incorrect */
relation->rd_rel->relowner = 0;
relation->rd_rel->relisshared = false;
}