diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-12-04 05:18:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-12-04 05:18:38 +0000 |
commit | 93902e9521ca1e707477da897c0f7d871b7e354f (patch) | |
tree | 304f4adeccfb65f900ea431f87c8c14bded0eee2 /src/backend/commands/cluster.c | |
parent | 91f508ae85d9f6fa6385b2a811e7b2ff690544fe (diff) | |
download | postgresql-93902e9521ca1e707477da897c0f7d871b7e354f.tar.gz postgresql-93902e9521ca1e707477da897c0f7d871b7e354f.zip |
Make usesysid consistently int4, not oid.
Catalog patch from Alvaro Herrera for same.
catversion updated. initdb required.
Diffstat (limited to 'src/backend/commands/cluster.c')
-rw-r--r-- | src/backend/commands/cluster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c index aadc388a44f..f460b2f0d9d 100644 --- a/src/backend/commands/cluster.c +++ b/src/backend/commands/cluster.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.97 2002/11/23 18:26:45 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.98 2002/12/04 05:18:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -804,11 +804,11 @@ check_cluster_ownership(Oid relOid) /* Get a list of tables that the current user owns and * have indisclustered set. Return the list in a List * of rvsToCluster - * with the tableOid and the indexOid on which the table is already + * with the tableOid and the indexOid on which the table is already * clustered. */ List * -get_tables_to_cluster(Oid owner) +get_tables_to_cluster(AclId owner) { Relation indRelation; HeapScanDesc scan; |