1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-20 15:22:23 +03:00

Make usesysid consistently int4, not oid.

Catalog patch from Alvaro Herrera for same.

catversion updated. initdb required.
This commit is contained in:
Bruce Momjian
2002-12-04 05:18:38 +00:00
parent 91f508ae85
commit 93902e9521
11 changed files with 45 additions and 42 deletions

View File

@ -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;