Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
 
> I suppose this is unhappy because it things elog(ERROR) might
> return?
 
It looks more like this code uses it without initialization:
 
        case OBJECT_INDEX:
        case OBJECT_SEQUENCE:
        case OBJECT_TABLE:
        case OBJECT_VIEW:
            relation =
                get_relation_by_qualified_name(objtype, objname,
lockmode);
            address.classId = RelationRelationId;
            address.objectId = RelationGetRelid(relation);
            address.objectSubId = 0;
            break;
 
-Kevin