Index: src/backend/utils/init/postinit.c =================================================================== RCS file: /home/alvherre/cvs/pgsql/src/backend/utils/init/postinit.c,v retrieving revision 1.148 diff -c -r1.148 postinit.c *** src/backend/utils/init/postinit.c 17 Jun 2005 22:32:47 -0000 1.148 --- src/backend/utils/init/postinit.c 23 Jun 2005 23:25:43 -0000 *************** *** 536,547 **** ThereIsAtLeastOneUser(void) { Relation pg_shadow_rel; - TupleDesc pg_shadow_dsc; HeapScanDesc scan; bool result; pg_shadow_rel = heap_open(ShadowRelationId, AccessExclusiveLock); - pg_shadow_dsc = RelationGetDescr(pg_shadow_rel); scan = heap_beginscan(pg_shadow_rel, SnapshotNow, 0, NULL); result = (heap_getnext(scan, ForwardScanDirection) != NULL); --- 536,545 ----