/* -------------------------------------------------------------------------
 *
 * objectaddress.cpp
 *	  functions for working with ObjectAddresses
 *
 * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
 *	  src/common/backend/catalog/objectaddress.cpp
 *
 * -------------------------------------------------------------------------
 */

#include "postgres.h"
#include "knl/knl_variable.h"

#include "access/sysattr.h"
#include "catalog/catalog.h"
#include "catalog/indexing.h"
#include "catalog/gs_model.h"
#include "catalog/objectaddress.h"
#include "catalog/pg_amop.h"
#include "catalog/pg_amproc.h"
#include "catalog/pg_attrdef.h"
#include "catalog/pg_authid.h"
#include "catalog/pg_cast.h"
#include "catalog/pg_default_acl.h"
#include "catalog/pg_collation.h"
#include "catalog/pg_constraint.h"
#include "catalog/pg_event_trigger.h"
#include "catalog/pg_conversion.h"
#include "catalog/pg_database.h"
#include "catalog/pg_extension.h"
#include "catalog/pg_foreign_data_wrapper.h"
#include "catalog/pg_foreign_server.h"
#include "catalog/pg_language.h"
#include "catalog/pg_largeobject.h"
#include "catalog/pg_largeobject_metadata.h"
#include "catalog/pg_namespace.h"
#include "catalog/pg_opclass.h"
#include "catalog/pg_opfamily.h"
#include "catalog/pg_operator.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_publication.h"
#include "catalog/pg_publication_rel.h"
#include "catalog/gs_package.h"
#include "catalog/pg_rewrite.h"
#include "catalog/pg_subscription.h"
#include "catalog/pg_rlspolicy.h"
#include "catalog/pg_tablespace.h"
#include "catalog/pg_trigger.h"
#include "catalog/pg_ts_config.h"
#include "catalog/pg_ts_dict.h"
#include "catalog/pg_ts_parser.h"
#include "catalog/pg_ts_template.h"
#include "catalog/pg_type.h"
#include "catalog/pg_user_mapping.h"
#include "catalog/pg_extension_data_source.h"
#include "catalog/pg_synonym.h"
#include "commands/dbcommands.h"
#include "commands/defrem.h"
#include "commands/directory.h"
#include "commands/event_trigger.h"
#include "commands/extension.h"
#include "commands/proclang.h"
#include "commands/sec_rls_cmds.h"
#include "commands/tablespace.h"
#include "commands/trigger.h"
#include "commands/user.h"
#include "client_logic/client_logic.h"
#include "foreign/foreign.h"
#include "libpq/auth.h"
#include "libpq/be-fsstubs.h"
#include "funcapi.h"
#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "parser/parse_func.h"
#include "parser/parse_oper.h"
#include "parser/parse_type.h"
#include "rewrite/rewriteSupport.h"
#include "storage/lmgr.h"
#include "storage/sinval.h"
#include "utils/acl.h"
#include "utils/builtins.h"
#include "utils/fmgroids.h"
#include "utils/lsyscache.h"
#include "utils/syscache.h"
#include "access/heapam.h"
#include "datasource/datasource.h"
#include "catalog/pg_depend.h"

/*
 * ObjectProperty
 *
 * This array provides a common part of system object structure; to help
 * consolidate routines to handle various kind of object classes.
 */

static THR_LOCAL const ObjectPropertyType ObjectProperty[] = {
    {
        AccessMethodRelationId,
        AmOidIndexId,
        AMOID,
        AMNAME,
        Anum_pg_am_amname,
        InvalidAttrNumber,
        InvalidAttrNumber,
        InvalidAttrNumber,
        (ObjectType)-1,
        true
    },
    {
        CastRelationId,
        CastOidIndexId,
        -1,
        -1,
        InvalidAttrNumber,
        InvalidAttrNumber,
        InvalidAttrNumber,
        InvalidAttrNumber,
        (ObjectType)-1,
        false
    },
    {
        CollationRelationId,
        CollationOidIndexId,
        COLLOID,
        -1,                     /* COLLNAMEENCNSP also takes encoding */
        Anum_pg_collation_collname,
        Anum_pg_collation_collnamespace,
        Anum_pg_collation_collowner,
        InvalidAttrNumber,
        OBJECT_COLLATION,
        true
    },
    {
        ConstraintRelationId,
        ConstraintOidIndexId,
        CONSTROID,
        -1,
        Anum_pg_constraint_conname,
        Anum_pg_constraint_connamespace,
        InvalidAttrNumber,
        InvalidAttrNumber,
        (ObjectType)-1,
        false
    },
    {
        ConversionRelationId,
        ConversionOidIndexId,
        CONVOID,
        CONNAMENSP,
        Anum_pg_conversion_conname,
        Anum_pg_conversion_connamespace,
        Anum_pg_conversion_conowner,
        InvalidAttrNumber,
        OBJECT_CONVERSION,
        true
    },
    {
        DatabaseRelationId,
        DatabaseOidIndexId,
        DATABASEOID,
        DATASOURCENAME,
        Anum_pg_database_datname,
        InvalidAttrNumber,
        Anum_pg_database_datdba,
        Anum_pg_database_datacl,
        OBJECT_DATABASE,
        true
    },
    {
        DataSourceRelationId, 
        DataSourceOidIndexId, 
        DATASOURCEOID,
        -1, 
        Anum_pg_extension_data_source_srcname,
        InvalidAttrNumber,
        Anum_pg_extension_data_source_srcowner,
        InvalidAttrNumber,
        OBJECT_DATA_SOURCE,
        true
    },
    {
        ExtensionRelationId,
        ExtensionOidIndexId,
        -1,
        -1,
        Anum_pg_extension_extname,
        InvalidAttrNumber,      /* extension doesn't belong to extnamespace */
        Anum_pg_extension_extowner,
        InvalidAttrNumber,
        OBJECT_EXTENSION,
        true
    },
    {
        ForeignDataWrapperRelationId,
        ForeignDataWrapperOidIndexId,
        FOREIGNDATAWRAPPEROID,
        FOREIGNDATAWRAPPERNAME,
        Anum_pg_foreign_data_wrapper_fdwname,
        InvalidAttrNumber,
        Anum_pg_foreign_data_wrapper_fdwowner,
        Anum_pg_foreign_data_wrapper_fdwacl,
        OBJECT_FDW,
        true
    },
    {
        ForeignServerRelationId,
        ForeignServerOidIndexId,
        FOREIGNSERVEROID,
        FOREIGNSERVERNAME,
        Anum_pg_foreign_server_srvname,
        InvalidAttrNumber,
        Anum_pg_foreign_server_srvowner,
        Anum_pg_foreign_server_srvacl,
        OBJECT_FOREIGN_SERVER,
        true
    },
    {
        PackageRelationId,
        PackageOidIndexId,
        PACKAGEOID,
        -1,
        InvalidAttrNumber,
        Anum_gs_package_pkgnamespace,
        Anum_pg_language_lanowner,
        Anum_pg_language_lanacl,
        OBJECT_LANGUAGE,
        true
    },
    {
        ProcedureRelationId,
        ProcedureOidIndexId,
        PROCOID,
        -1,                     /* PROCNAMEARGSNSP also takes argument types */
        Anum_pg_proc_proname,
        Anum_pg_proc_pronamespace,
        Anum_pg_proc_proowner,
        Anum_pg_proc_proacl,
        OBJECT_FUNCTION,
        false
    },
    {
        LanguageRelationId,
        LanguageOidIndexId,
        LANGOID,
        LANGNAME,
        Anum_pg_language_lanname,
        InvalidAttrNumber,
        Anum_pg_language_lanowner,
        Anum_pg_language_lanacl,
        OBJECT_LANGUAGE,
        true
    },
    {
        LargeObjectMetadataRelationId, 
        LargeObjectMetadataOidIndexId,
        -1,
        -1,
        InvalidAttrNumber,
        InvalidAttrNumber,
        Anum_pg_largeobject_metadata_lomowner,
        Anum_pg_largeobject_metadata_lomacl,
        OBJECT_LARGEOBJECT,
        false
        
    },
    {
        OperatorClassRelationId,
        OpclassOidIndexId,
        CLAOID,
        -1,                     /* CLAAMNAMENSP also takes opcmethod */
        Anum_pg_opclass_opcname,
        Anum_pg_opclass_opcnamespace,
        Anum_pg_opclass_opcowner,
        InvalidAttrNumber,
        OBJECT_OPCLASS,
        true
    },
    {
        ModelRelationId,
        GsModelOidIndexId,
        DB4AI_MODEL, 
        -1,
        Anum_gs_model_model_name,
        InvalidAttrNumber,
        Anum_gs_model_owner_oid,
        InvalidAttrNumber,
        (ObjectType)-1,
        false
    },
    {
        OperatorRelationId,
        OperatorOidIndexId,
        OPEROID,
        -1,                     /* OPERNAMENSP also takes left and right type */
        Anum_pg_operator_oprname,
        Anum_pg_operator_oprnamespace,
        Anum_pg_operator_oprowner,
        InvalidAttrNumber,
        OBJECT_OPERATOR,
        false
    },
    {
        OperatorFamilyRelationId,
        OpfamilyOidIndexId,
        OPFAMILYOID,
        -1,                     /* OPFAMILYAMNAMENSP also takes opfmethod */
        Anum_pg_opfamily_opfname,
        Anum_pg_opfamily_opfnamespace,
        Anum_pg_opfamily_opfowner,
        InvalidAttrNumber,
        OBJECT_OPFAMILY,
        true
    },
    {
        AuthIdRelationId,
        AuthIdOidIndexId,
        AUTHOID,
        AUTHNAME,
        Anum_pg_authid_rolname,
        InvalidAttrNumber,
        InvalidAttrNumber,
        InvalidAttrNumber,
        (ObjectType)-1,
        true
    },
    {
        RewriteRelationId,
        RewriteOidIndexId,
        -1,
        -1,
        Anum_pg_rewrite_rulename,
        InvalidAttrNumber,
        InvalidAttrNumber,
        InvalidAttrNumber,
        (ObjectType)-1,
        false
    },
    {
        NamespaceRelationId,
        NamespaceOidIndexId,
        NAMESPACEOID,
        NAMESPACENAME,
        Anum_pg_namespace_nspname,
        InvalidAttrNumber,
        Anum_pg_namespace_nspowner,
        Anum_pg_namespace_nspacl,
        OBJECT_SCHEMA,
        true
    },
    {
        RelationRelationId,
        ClassOidIndexId,
        RELOID,
        RELNAMENSP,
        Anum_pg_class_relname,
        Anum_pg_class_relnamespace,
        Anum_pg_class_relowner,
        Anum_pg_class_relacl,
        OBJECT_TABLE,
        true
    },
    {
        TableSpaceRelationId,
        TablespaceOidIndexId,
        TABLESPACEOID,
        -1,
        Anum_pg_tablespace_spcname,
        InvalidAttrNumber,
        Anum_pg_tablespace_spcowner,
        Anum_pg_tablespace_spcacl,
        OBJECT_TABLESPACE,
        true
    },
    {
        TriggerRelationId,
        TriggerOidIndexId,
        -1,
        -1,
        Anum_pg_trigger_tgname,
        InvalidAttrNumber,
        InvalidAttrNumber,
        InvalidAttrNumber,
        (ObjectType)-1,
        false
    },
    {
        EventTriggerRelationId,
        EventTriggerOidIndexId,
        EVENTTRIGGEROID,
        EVENTTRIGGERNAME,
        Anum_pg_event_trigger_evtname,
        InvalidAttrNumber,
        Anum_pg_event_trigger_evtowner,
        InvalidAttrNumber,
        OBJECT_EVENT_TRIGGER,
        true
    },
    {
        TSConfigRelationId,
        TSConfigOidIndexId,
        TSCONFIGOID,
        TSCONFIGNAMENSP,
        Anum_pg_ts_config_cfgname,
        Anum_pg_ts_config_cfgnamespace,
        Anum_pg_ts_config_cfgowner,
        InvalidAttrNumber,
        OBJECT_TSCONFIGURATION,
        true
    },
    {
        TSDictionaryRelationId,
        TSDictionaryOidIndexId,
        TSDICTOID,
        TSDICTNAMENSP,
        Anum_pg_ts_dict_dictname,
        Anum_pg_ts_dict_dictnamespace,
        Anum_pg_ts_dict_dictowner,
        InvalidAttrNumber,
        OBJECT_TSDICTIONARY,
        true
    },
    {
        TSParserRelationId,
        TSParserOidIndexId,
        TSPARSEROID,
        TSPARSERNAMENSP,
        Anum_pg_ts_parser_prsname,
        Anum_pg_ts_parser_prsnamespace,
        InvalidAttrNumber,
        InvalidAttrNumber,
        (ObjectType)-1,
        true
    },
    {
        TypeRelationId,
        TypeOidIndexId,
        TYPEOID,
        TYPENAMENSP,
        Anum_pg_type_typname,
        Anum_pg_type_typnamespace,
        Anum_pg_type_typowner,
        Anum_pg_type_typacl,
        OBJECT_TYPE,
        true
    },
    {
        TSTemplateRelationId,                                                                                                                                                                 
        TSTemplateOidIndexId,
        TSTEMPLATEOID,
        TSTEMPLATENAMENSP,
        Anum_pg_ts_template_tmplname,
        Anum_pg_ts_template_tmplnamespace,
        InvalidAttrNumber,
        InvalidAttrNumber,
        (ObjectType)-1,
        true,
    },
    {
        RlsPolicyRelationId,
        PgRlspolicyOidIndex,
        -1,
        -1,  
        InvalidAttrNumber,        /* attnum_name */
        InvalidAttrNumber,        /* attnum_namespace */
        InvalidAttrNumber,
        InvalidAttrNumber,
        OBJECT_RLSPOLICY,
        true
    },
    {
        PublicationRelationId,
        PublicationObjectIndexId,
        PUBLICATIONOID,
        PUBLICATIONNAME,
        Anum_pg_publication_pubname,
        InvalidAttrNumber,
        Anum_pg_publication_pubowner,
        InvalidAttrNumber,
        OBJECT_PUBLICATION,
        true
    },
    {
        SubscriptionRelationId,
        SubscriptionObjectIndexId,
        SUBSCRIPTIONOID,
        SUBSCRIPTIONNAME,
        Anum_pg_subscription_subname,
        InvalidAttrNumber,
        Anum_pg_subscription_subowner,
        InvalidAttrNumber,
        OBJECT_SUBSCRIPTION,
        true
    }};

extern void format_operator_parts(Oid operator_oid, List **objnames,
								  List **objargs);
 /*
  * This struct maps the string object types as returned by
  * getObjectTypeDescription into ObjType enum values.  Note that some enum
  * values can be obtained by different names, and that some string object types
  * do not have corresponding values in the output enum.  The user of this map
  * must be careful to test for invalid values being returned.
  *
  * To ease maintenance, this follows the order of getObjectTypeDescription.
  */
static const struct object_type_map
{
    const char *tm_name;
    ObjectType  tm_type;
}
ObjectTypeMap[] =
{
    /* OCLASS_CLASS, all kinds of relations */
    { "table", OBJECT_TABLE },
    { "index", OBJECT_INDEX },
    { "sequence", OBJECT_SEQUENCE },
    { "toast table", (ObjectType)-1 },      /* unmapped */
    { "view", OBJECT_VIEW },
    { "materialized view", OBJECT_MATVIEW },
    { "composite type", (ObjectType)-1 },   /* unmapped */
    { "foreign table", OBJECT_FOREIGN_TABLE },
    { "table column", OBJECT_COLUMN },
    { "index column", (ObjectType)-1 },     /* unmapped */
    { "sequence column", (ObjectType)-1 },  /* unmapped */
    { "toast table column", (ObjectType)-1 },   /* unmapped */
    { "view column", (ObjectType)-1 },      /* unmapped */
    { "materialized view column", (ObjectType)-1 }, /* unmapped */
    { "composite type column", (ObjectType)-1 },    /* unmapped */
    { "foreign table column", OBJECT_COLUMN },
    /* OCLASS_PROC */
    { "aggregate", OBJECT_AGGREGATE },
    { "function", OBJECT_FUNCTION },
    /* OCLASS_TYPE */
    { "type", OBJECT_TYPE },
    /* OCLASS_CAST */
    { "cast", OBJECT_CAST },
    /* OCLASS_COLLATION */
    { "collation", OBJECT_COLLATION },
    /* OCLASS_CONSTRAINT */
    { "domain constraint", OBJECT_DOMCONSTRAINT },
    /* OCLASS_CONVERSION */
    { "conversion", OBJECT_CONVERSION },
    /* OCLASS_DEFAULT */
    { "default value", OBJECT_DEFAULT },
    /* OCLASS_LANGUAGE */
    { "language", OBJECT_LANGUAGE },
    /* OCLASS_LARGEOBJECT */
    { "large object", OBJECT_LARGEOBJECT },
    /* OCLASS_OPERATOR */
    { "operator", OBJECT_OPERATOR },
    /* OCLASS_OPCLASS */
    { "operator class", OBJECT_OPCLASS },
    /* OCLASS_OPFAMILY */
    { "operator family", OBJECT_OPFAMILY },
    /* OCLASS_AM */
    { "access method", OBJECT_ACCESS_METHOD },
    /* OCLASS_AMOP */
    { "operator of access method", OBJECT_AMOP },
    /* OCLASS_AMPROC */
    { "function of access method", OBJECT_AMPROC },
    /* OCLASS_REWRITE */
    { "rule", OBJECT_RULE },
    /* OCLASS_TRIGGER */
    { "trigger", OBJECT_TRIGGER },
    /* OCLASS_SCHEMA */
    { "schema", OBJECT_SCHEMA },
    /* OCLASS_TSPARSER */
    { "text search parser", OBJECT_TSPARSER },
    /* OCLASS_TSDICT */
    { "text search dictionary", OBJECT_TSDICTIONARY },
    /* OCLASS_TSTEMPLATE */
    { "text search template", OBJECT_TSTEMPLATE },
    /* OCLASS_TSCONFIG */
    { "text search configuration", OBJECT_TSCONFIGURATION },
    /* OCLASS_ROLE */
    { "role", OBJECT_ROLE },
    /* OCLASS_DATABASE */
    { "database", OBJECT_DATABASE },
    /* OCLASS_TBLSPACE */
    { "tablespace", OBJECT_TABLESPACE },
    /* OCLASS_TABCONSTRAINT */
    { "table constraint", OBJECT_TABCONSTRAINT },
    /* OCLASS_FDW */
    { "foreign-data wrapper", OBJECT_FDW },
    /* OCLASS_FOREIGN_SERVER */
    { "server", OBJECT_FOREIGN_SERVER },
    /* OCLASS_USER_MAPPING */
    /* OCLASS_DEFACL */
    { "default acl", (ObjectType)-1 },      /* unmapped */
    /* OCLASS_EXTENSION */
    { "extension", OBJECT_EXTENSION },
    /* OCLASS_USER_MAPPING*/
    { "user mapping", OBJECT_USER_MAPPING},
    /* OCLASS_SUBSCRIPTION*/
    { "subscription", OBJECT_SUBSCRIPTION},
    /* OCLASS_PUBLICATION_REL*/
    { "publication relation", OBJECT_PUBLICATION_REL},
    /* OCLASS_PUBLICATION*/
    { "publication", OBJECT_PUBLICATION},
    /* OCLASS_EVENT_TRIGGER */
    { "event trigger", OBJECT_EVENT_TRIGGER }
};
 
const ObjectAddress InvalidObjectAddress =
{
    InvalidOid,
    InvalidOid,
    0
};

static ObjectAddress get_object_address_unqualified(ObjectType objtype, List* qualname, bool missing_ok);
static ObjectAddress get_relation_by_qualified_name(
    ObjectType objtype, List* objname, Relation* relp, LOCKMODE lockmode, bool missing_ok);
static ObjectAddress get_object_address_relobject(ObjectType objtype, List* objname, Relation* relp, bool missing_ok);
static ObjectAddress get_object_address_attribute(
    ObjectType objtype, List* objname, Relation* relp, LOCKMODE lockmode, bool missing_ok);
static ObjectAddress get_object_address_type(ObjectType objtype, List* objname, bool missing_ok);
static ObjectAddress get_object_address_opcf(ObjectType objtype, List* objname, bool missing_ok);
static ObjectAddress get_object_address_opf_member(ObjectType objtype,
                             List *objname, List *objargs, bool missing_ok);
static const ObjectPropertyType* get_object_property_data(Oid class_id);
static ObjectAddress get_object_address_publication_rel(List *objname, List *objargs,
    Relation *relation, bool missing_ok);

static void getOpFamilyIdentity(StringInfo buffer, Oid opfid, List **objname);
static void getRelationIdentity(StringInfo buffer, Oid relid, List **object);
static void getProcedureTypeDescription(StringInfo buffer, Oid procid);
static void getRelationTypeDescription(StringInfo buffer, Oid relid, int32 objectSubId);
static ObjectAddress get_object_address_attrdef(ObjectType objtype,
                           List *objname, Relation *relp, LOCKMODE lockmode,
                           bool missing_ok);
static ObjectAddress get_object_address_usermapping(List *objname,
                               List *objargs, bool missing_ok);


static void
getOpFamilyIdentity(StringInfo buffer, Oid opfid, List **objname)
{
    HeapTuple   opfTup;
    Form_pg_opfamily opfForm;
    HeapTuple   amTup;
    Form_pg_am  amForm;
    char       *schema;
 
    opfTup = SearchSysCache1(OPFAMILYOID, ObjectIdGetDatum(opfid));
    if (!HeapTupleIsValid(opfTup))
        elog(ERROR, "cache lookup failed for opfamily %u", opfid);
    opfForm = (Form_pg_opfamily) GETSTRUCT(opfTup);
 
    amTup = SearchSysCache1(AMOID, ObjectIdGetDatum(opfForm->opfmethod));
    if (!HeapTupleIsValid(amTup))
        elog(ERROR, "cache lookup failed for access method %u",
             opfForm->opfmethod);
    amForm = (Form_pg_am) GETSTRUCT(amTup);
 
    schema = get_namespace_name_or_temp(opfForm->opfnamespace);
    appendStringInfo(buffer, "%s for %s",
                     quote_qualified_identifier(schema,
                                                NameStr(opfForm->opfname)),
                     NameStr(amForm->amname));
    if (objname)
        *objname = list_make3(pstrdup(NameStr(amForm->amname)),
                              pstrdup(schema),
                              pstrdup(NameStr(opfForm->opfname)));
        
    ReleaseSysCache(amTup);
    ReleaseSysCache(opfTup);
}
 
 /*
  * Append the relation identity (quoted qualified name) to the given
  * StringInfo.
  */
static void
getRelationIdentity(StringInfo buffer, Oid relid, List **object)
{
    HeapTuple   relTup;
    Form_pg_class relForm;
    char       *schema;
 
    relTup = SearchSysCache1(RELOID,
                             ObjectIdGetDatum(relid));
    if (!HeapTupleIsValid(relTup))
        elog(ERROR, "cache lookup failed for relation %u", relid);
    relForm = (Form_pg_class) GETSTRUCT(relTup);
 
    schema = get_namespace_name_or_temp(relForm->relnamespace);
    appendStringInfo(buffer, "%s",
                     quote_qualified_identifier(schema,
                                                NameStr(relForm->relname)));

    if (object)
        *object = list_make2(schema, pstrdup(NameStr(relForm->relname)));
 
    ReleaseSysCache(relTup);
}

/*
 * Translate an object name and arguments (as passed by the parser) to an
 * ObjectAddress.
 *
 * The returned object will be locked using the specified lockmode.  If a
 * sub-object is looked up, the parent object will be locked instead.
 *
 * If the object is a relation or a child object of a relation (e.g. an
 * attribute or contraint), the relation is also opened and *relp receives
 * the open relcache entry pointer; otherwise, *relp is set to NULL.  This
 * is a bit grotty but it makes life simpler, since the caller will
 * typically need the relcache entry too.  Caller must close the relcache
 * entry when done with it.  The relation is locked with the specified lockmode
 * if the target object is the relation itself or an attribute, but for other
 * child objects, only AccessShareLock is acquired on the relation.
 *
 * We don't currently provide a function to release the locks acquired here;
 * typically, the lock must be held until commit to guard against a concurrent
 * drop operation.
 */
ObjectAddress get_object_address(
    ObjectType objtype, List* objname, List* objargs, Relation* relp, LOCKMODE lockmode, bool missing_ok)
{
    if (ENABLE_DMS && (objtype == OBJECT_PUBLICATION || objtype == OBJECT_PUBLICATION_NAMESPACE ||
        objtype == OBJECT_PUBLICATION_REL || objtype == OBJECT_SUBSCRIPTION)) {
        ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
            errmsg("Not support Publication and Subscription while DMS and DSS enabled")));
    }
    ObjectAddress address;
    ObjectAddress old_address = {InvalidOid, InvalidOid, 0};
    Relation relation = NULL;
    Relation old_relation = NULL;
    List* objargs_agg = NULL;

    /* Some kind of lock must be taken. */
    Assert(lockmode != NoLock);
    uint64 sess_inval_count;
    uint64 thrd_inval_count = 0;
    for (;;) {
        /*
         * Remember this value, so that, after looking up the object name and
         * locking it, we can check whether any invalidation messages have
         * been processed that might require a do-over.
         */
        sess_inval_count = u_sess->inval_cxt.SIMCounter;
        if (EnableLocalSysCache()) {
            thrd_inval_count = t_thrd.lsc_cxt.lsc->inval_cxt.SIMCounter;
        }

        /* Look up object address. */
        switch (objtype) {
            case OBJECT_INDEX:
            case OBJECT_SEQUENCE:
            case OBJECT_LARGE_SEQUENCE:
            case OBJECT_TABLE:
            case OBJECT_VIEW:
            case OBJECT_CONTQUERY:
            case OBJECT_MATVIEW:
            case OBJECT_FOREIGN_TABLE:
            case OBJECT_STREAM:
                address = get_relation_by_qualified_name(objtype, objname, &relation, lockmode, missing_ok);
                break;
            case OBJECT_COLUMN:
                address = get_object_address_attribute(objtype, objname, &relation, lockmode, missing_ok);
                break;
            case OBJECT_DEFAULT:
                address =
                    get_object_address_attrdef(objtype, objname,
                                               &relation, lockmode,
                                               missing_ok);
                break;
            case OBJECT_RULE:
            case OBJECT_TRIGGER:
            case OBJECT_TABCONSTRAINT:
            case OBJECT_RLSPOLICY:
                address = get_object_address_relobject(objtype, objname, &relation, missing_ok);
                break;
            case OBJECT_DOMCONSTRAINT:
                {
                    ObjectAddress   domaddr;
                    char           *constrname;

                    domaddr = get_object_address_type(OBJECT_DOMAIN, objname, missing_ok);
                    constrname = strVal(linitial(objargs));   
                    address.classId = ConstraintRelationId;
                    address.objectId = get_domain_constraint_oid(domaddr.objectId,
                                               constrname, missing_ok);
                    address.objectSubId = 0;
                }
                 break;
            case OBJECT_DATABASE:
            case OBJECT_DB4AI_MODEL:
            case OBJECT_EXTENSION:
            case OBJECT_TABLESPACE:
            case OBJECT_ROLE:
            case OBJECT_USER:
            case OBJECT_SCHEMA:
            case OBJECT_LANGUAGE:
            case OBJECT_FDW:
            case OBJECT_FOREIGN_SERVER:
            case OBJECT_DATA_SOURCE:
            case OBJECT_PUBLICATION:
            case OBJECT_SUBSCRIPTION:
            case OBJECT_EVENT_TRIGGER:    
            case OBJECT_ACCESS_METHOD:
                address = get_object_address_unqualified(objtype, objname, missing_ok);
                break;
            case OBJECT_TYPE:
            case OBJECT_DOMAIN:
                address = get_object_address_type(objtype, objname, missing_ok);
                break;
            case OBJECT_AGGREGATE:
                /* Given ordered set aggregate with no direct args, aggr_args variable is modified in gram.y.
                   So the parse of aggr_args should be changed. See gram.y for detail. */
                    objargs_agg = (List*)linitial(objargs);

                address.classId = ProcedureRelationId;
                address.objectId = LookupAggNameTypeNames(objname, objargs_agg, missing_ok);
                address.objectSubId = 0;                 
                break;

            case OBJECT_FUNCTION:
                address.classId = ProcedureRelationId;
                address.objectId = LookupFuncNameOptTypeNames(objname, objargs, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_PACKAGE:
                address.classId = PackageRelationId;
                address.objectId = PackageNameListGetOid(objname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_PACKAGE_BODY:
                address.classId = PackageRelationId;
                address.objectId = PackageNameListGetOid(objname, missing_ok, true);
                address.objectSubId = (int32)address.objectId; /* same as objectId for package body */
                break;
            case OBJECT_OPERATOR:
                Assert(list_length(objargs) == 2);
                address.classId = OperatorRelationId;
                address.objectId = LookupOperNameTypeNames(
                    NULL, objname, (TypeName*)linitial(objargs), (TypeName*)lsecond(objargs), missing_ok, -1);
                address.objectSubId = 0;
                break;
            case OBJECT_COLLATION:
                address.classId = CollationRelationId;
                address.objectId = get_collation_oid(objname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_CONVERSION:
                address.classId = ConversionRelationId;
                address.objectId = get_conversion_oid(objname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_OPCLASS:
            case OBJECT_OPFAMILY:
                address = get_object_address_opcf(objtype, objname, missing_ok);
                break;
            case OBJECT_AMOP:
            case OBJECT_AMPROC:
                address = get_object_address_opf_member(objtype, objname,
                                                        objargs, missing_ok);
                break;
            case OBJECT_LARGEOBJECT:
                Assert(list_length(objname) == 1);
                address.classId = LargeObjectRelationId;
                address.objectId = oidparse((Node*)linitial(objname));
                address.objectSubId = 0;
                if (!LargeObjectExists(address.objectId)) {
                    if (!missing_ok)
                        ereport(ERROR,
                            (errcode(ERRCODE_UNDEFINED_OBJECT),
                                errmsg("large object %u does not exist", address.objectId)));
                }
                break;
            case OBJECT_CAST: {
                TypeName* sourcetype = (TypeName*)linitial(objname);
                TypeName* targettype = (TypeName*)linitial(objargs);
                Oid sourcetypeid = typenameTypeId(NULL, sourcetype);
                Oid targettypeid = typenameTypeId(NULL, targettype);

                address.classId = CastRelationId;
                address.objectId = get_cast_oid(sourcetypeid, targettypeid, missing_ok);
                address.objectSubId = 0;
            } break;
            case OBJECT_TSPARSER:
                address.classId = TSParserRelationId;
                address.objectId = get_ts_parser_oid(objname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_TSDICTIONARY:
                address.classId = TSDictionaryRelationId;
                address.objectId = get_ts_dict_oid(objname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_TSTEMPLATE:
                address.classId = TSTemplateRelationId;
                address.objectId = get_ts_template_oid(objname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_TSCONFIGURATION:
                address.classId = TSConfigRelationId;
                address.objectId = get_ts_config_oid(objname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_DIRECTORY:
                address = get_object_address_unqualified(objtype, objname, missing_ok);
                break;
            case OBJECT_PUBLICATION_REL:
                address = get_object_address_publication_rel(objname, objargs, &relation, missing_ok);
                break;
            case OBJECT_USER_MAPPING:
                address = get_object_address_usermapping(objname, objargs,
                                                         missing_ok);
                break;
                
            default:
                ereport(
                    ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unrecognized objtype: %d", (int)objtype)));
                /* placate compiler, in case it thinks elog might return */
                address.classId = InvalidOid;
                address.objectId = InvalidOid;
                address.objectSubId = 0;
        }

        /*
         * If we could not find the supplied object, return without locking.
         */
        if (!OidIsValid(address.objectId)) {
            Assert(missing_ok);
            return address;
        }

        /*
         * If we're retrying, see if we got the same answer as last time.  If
         * so, we're done; if not, we locked the wrong thing, so give up our
         * lock.
         */
        if (OidIsValid(old_address.classId)) {
            if (old_address.classId == address.classId && old_address.objectId == address.objectId &&
                old_address.objectSubId == address.objectSubId) {
                    if (old_relation != NULL) {
                        Assert(old_relation == relation);
                        /* should be 2 */
                        Assert(old_relation->rd_refcnt > 1);
                        heap_close(old_relation, NoLock);
                        old_relation = NULL;
                    }
                    break;
                }
            if (old_address.classId != RelationRelationId) {
                if (old_relation != NULL) {
                    heap_close(old_relation, NoLock);
                    old_relation = NULL;
                }
                if (IsSharedRelation(old_address.classId))
                    UnlockSharedObject(old_address.classId, old_address.objectId, 0, lockmode);
                else
                    UnlockDatabaseObject(old_address.classId, old_address.objectId, 0, lockmode);
            }
        }

        /*
         * If we're dealing with a relation or attribute, then the relation is
         * already locked.	Otherwise, we lock it now.
         */
        if (address.classId != RelationRelationId) {
            if (IsSharedRelation(address.classId))
                LockSharedObject(address.classId, address.objectId, 0, lockmode);
            else
                LockDatabaseObject(address.classId, address.objectId, 0, lockmode);
        }

        /*
         * At this point, we've resolved the name to an OID and locked the
         * corresponding database object.  However, it's possible that by the
         * time we acquire the lock on the object, concurrent DDL has modified
         * the database in such a way that the name we originally looked up no
         * longer resolves to that OID.
         *
         * We can be certain that this isn't an issue if (a) no shared
         * invalidation messages have been processed or (b) we've locked a
         * relation somewhere along the line.  All the relation name lookups
         * in this module ultimately use RangeVarGetRelid() to acquire a
         * relation lock, and that function protects against the same kinds of
         * races we're worried about here.  Even when operating on a
         * constraint, rule, or trigger, we still acquire AccessShareLock on
         * the relation, which is enough to freeze out any concurrent DDL.
         *
         * In all other cases, however, it's possible that the name we looked
         * up no longer refers to the object we locked, so we retry the lookup
         * and see whether we get the same answer.
         */
        if (EnableLocalSysCache()) {
            if (sess_inval_count == u_sess->inval_cxt.SIMCounter &&
                thrd_inval_count == t_thrd.lsc_cxt.lsc->inval_cxt.SIMCounter) {
                break;
            }
        } else {
            if (sess_inval_count == u_sess->inval_cxt.SIMCounter) {
                break;
            }
        }
        old_address = address;
        old_relation = relation;
    }

    /* Return the object address and the relation. */
    *relp = relation;
    return address;
}

/*
 * Find an ObjectAddress for a type of object that is identified by an
 * unqualified name.
 */
static ObjectAddress get_object_address_unqualified(ObjectType objtype, List* qualname, bool missing_ok)
{
    const char* name = NULL;
    ObjectAddress address;

    /*
     * The types of names handled by this function are not permitted to be
     * schema-qualified or catalog-qualified.
     */
    if (list_length(qualname) != 1) {
        const char* msg = NULL;

        switch (objtype) {
            case OBJECT_ACCESS_METHOD:
                msg = gettext_noop("access method name cannot be qualified");
                break;
            case OBJECT_DATABASE:
                msg = gettext_noop("database name cannot be qualified");
                break;
            case OBJECT_DB4AI_MODEL:
                msg = gettext_noop("model name cannot be qualified");
                break;
            case OBJECT_EXTENSION:
                msg = gettext_noop("extension name cannot be qualified");
                break;
            case OBJECT_TABLESPACE:
                msg = gettext_noop("tablespace name cannot be qualified");
                break;
            case OBJECT_ROLE:
            case OBJECT_USER:
                msg = gettext_noop("role name cannot be qualified");
                break;
            case OBJECT_SCHEMA:
                msg = gettext_noop("schema name cannot be qualified");
                break;
            case OBJECT_LANGUAGE:
                msg = gettext_noop("language name cannot be qualified");
                break;
            case OBJECT_FDW:
                msg = gettext_noop("foreign-data wrapper name cannot be qualified");
                break;
            case OBJECT_FOREIGN_SERVER:
                msg = gettext_noop("server name cannot be qualified");
                break;
            case OBJECT_DATA_SOURCE:
                msg = gettext_noop("data source name cannot be qualified");
                break;
            case OBJECT_DIRECTORY:
                msg = gettext_noop("directory name cannot be qualified");
                break;
            case OBJECT_PUBLICATION:
                msg = gettext_noop("publication name cannot be qualified");
                break;
            case OBJECT_SUBSCRIPTION:
                msg = gettext_noop("subscription name cannot be qualified");
		break;
            case OBJECT_EVENT_TRIGGER:
                msg = gettext_noop("event trigger name cannot be qualified");
                break;
            default:
                ereport(
                    ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unrecognized objtype: %d", (int)objtype)));
                msg = NULL; /* placate compiler */
        }
        ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), errmsg("%s", _(msg))));
    }

    /* Format is valid, extract the actual name. */
    name = strVal(linitial(qualname));

    /* Translate name to OID. */
    switch (objtype) {
        case OBJECT_ACCESS_METHOD:
            address.classId = AccessMethodRelationId;
            address.objectId = get_am_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_DATABASE:
            address.classId = DatabaseRelationId;
            address.objectId = get_database_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_DB4AI_MODEL:
            address.classId = ModelRelationId;
            address.objectId = get_model_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_EXTENSION:
            address.classId = ExtensionRelationId;
            address.objectId = get_extension_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_TABLESPACE:
            address.classId = TableSpaceRelationId;
            address.objectId = get_tablespace_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_ROLE:
        case OBJECT_USER:
            address.classId = AuthIdRelationId;
            address.objectId = get_role_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_SCHEMA:
            address.classId = NamespaceRelationId;
            address.objectId = get_namespace_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_LANGUAGE:
            address.classId = LanguageRelationId;
            address.objectId = get_language_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_FDW:
            address.classId = ForeignDataWrapperRelationId;
            address.objectId = get_foreign_data_wrapper_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_FOREIGN_SERVER:
            address.classId = ForeignServerRelationId;
            address.objectId = get_foreign_server_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_DATA_SOURCE:
            address.classId = DataSourceRelationId;
            address.objectId = get_data_source_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_DIRECTORY:
            address.classId = PgDirectoryRelationId;
            address.objectId = get_directory_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_PUBLICATION:
            address.classId = PublicationRelationId;
            address.objectId = get_publication_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_SUBSCRIPTION:
            address.classId = SubscriptionRelationId;
            address.objectId = get_subscription_oid(name, missing_ok);
            address.objectSubId = 0;
	    break;
        case OBJECT_EVENT_TRIGGER:
            address.classId = EventTriggerRelationId;
            address.objectId = get_event_trigger_oid(name, missing_ok);
            address.objectSubId = 0;
            break;
        default:
            ereport(ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unrecognized objtype: %d", (int)objtype)));
            /* placate compiler, which doesn't know elog won't return */
            address.classId = InvalidOid;
            address.objectId = InvalidOid;
            address.objectSubId = 0;
    }

    return address;
}

/*
 * Locate a relation by qualified name.
 */
static ObjectAddress get_relation_by_qualified_name(
    ObjectType objtype, List* objname, Relation* relp, LOCKMODE lockmode, bool missing_ok)
{
    Relation relation;
    ObjectAddress address;

    address.classId = RelationRelationId;
    address.objectId = InvalidOid;
    address.objectSubId = 0;

    relation = relation_openrv_extended(makeRangeVarFromNameList(objname), lockmode, missing_ok);
    if (!relation)
        return address;

    switch (objtype) {
        case OBJECT_INDEX:
            if (relation->rd_rel->relkind != RELKIND_INDEX &&
                relation->rd_rel->relkind != RELKIND_GLOBAL_INDEX)
                ereport(ERROR,
                    (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                        errmsg("\"%s\" is not an index", RelationGetRelationName(relation))));
            break;
        case OBJECT_SEQUENCE:
            if (relation->rd_rel->relkind != RELKIND_SEQUENCE)
                ereport(ERROR,
                    (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                        errmsg("\"%s\" is not a sequence", RelationGetRelationName(relation))));
            break;
        case OBJECT_LARGE_SEQUENCE:
            if (relation->rd_rel->relkind != RELKIND_LARGE_SEQUENCE)
                ereport(ERROR,
                    (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                        errmsg("\"%s\" is not a large sequence", RelationGetRelationName(relation))));
            break;
        case OBJECT_TABLE:
            if (relation->rd_rel->relkind != RELKIND_RELATION)
                ereport(ERROR,
                    (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                        errmsg("\"%s\" is not a table", RelationGetRelationName(relation))));
            break;
        case OBJECT_VIEW:
            if (relation->rd_rel->relkind != RELKIND_VIEW)
                ereport(ERROR,
                    (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                        errmsg("\"%s\" is not a view", RelationGetRelationName(relation))));
            break;
        case OBJECT_CONTQUERY:
            if (relation->rd_rel->relkind != RELKIND_CONTQUERY)
                ereport(ERROR,
                    (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                        errmsg("\"%s\" is not a contview", RelationGetRelationName(relation))));
            break;
        case OBJECT_MATVIEW:
            if (relation->rd_rel->relkind != RELKIND_MATVIEW)
                ereport(ERROR,
                        (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                         errmsg("\"%s\" is not a materialized view",
                                RelationGetRelationName(relation))));
            break;
        case OBJECT_FOREIGN_TABLE:
            if (relation->rd_rel->relkind != RELKIND_FOREIGN_TABLE)
                ereport(ERROR,
                    (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                        errmsg("\"%s\" is not a foreign table", RelationGetRelationName(relation))));
            break;
        case OBJECT_STREAM:
            if (relation->rd_rel->relkind != RELKIND_STREAM)
                ereport(ERROR,
                    (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                        errmsg("\"%s\" is not a stream", RelationGetRelationName(relation))));
            break;
        default:
            ereport(ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unrecognized objtype: %d", (int)objtype)));
            break;
    }

    /* Done. */
    address.objectId = RelationGetRelid(relation);
    *relp = relation;

    return address;
}

/*
 * Find object address for an object that is attached to a relation.
 *
 * Note that we take only an AccessShareLock on the relation.  We need not
 * pass down the LOCKMODE from get_object_address(), because that is the lock
 * mode for the object itself, not the relation to which it is attached.
 */
static ObjectAddress get_object_address_relobject(ObjectType objtype, List* objname, Relation* relp, bool missing_ok)
{
    ObjectAddress address;
    Relation relation = NULL;
    int nnames;
    const char* depname = NULL;
    const char* schemaname = NULL;

    /* Extract name of dependent object. */
    if (objtype == OBJECT_TRIGGER && nodeTag(lfirst(list_tail(objname))) == T_List) {
        RangeVar* trigname = makeRangeVarFromNameList((List*)lfirst(list_tail(objname)));
        depname = trigname->relname;
        schemaname = trigname->schemaname;
        pfree_ext(trigname);
    } else {
        depname = strVal(lfirst(list_tail(objname)));
    }

    /* Separate relation name from dependent object name. */
    nnames = list_length(objname);
    if (nnames < 2) {
        Oid reloid;

        /*
         * For compatibility with very old releases, we sometimes allow users
         * to attempt to specify a rule without mentioning the relation name.
         * If there's only rule by that name in the entire database, this will
         * work.  But objects other than rules don't get this special
         * treatment.
         */
         /*mysql drop trigger syntax*/
        if (objtype == OBJECT_TRIGGER && u_sess->attr.attr_sql.sql_compatibility == B_FORMAT)
        {
            address.classId = TriggerRelationId;
            address.objectId = get_trigger_oid_b(depname, &reloid, missing_ok);
            address.objectSubId = 0;
        } else {
            if (objtype != OBJECT_RULE)
                ereport(ERROR, (errcode(ERRCODE_UNEXPECTED_NODE_STATE), errmsg("must specify relation and object name")));
            address.classId = RewriteRelationId;
            address.objectId = get_rewrite_oid_without_relid(depname, &reloid, missing_ok);
            address.objectSubId = 0;
        }
        /*
         * Caller is expecting to get back the relation, even though we didn't
         * end up using it to find the rule.
         */
        if (OidIsValid(address.objectId)) {
            relation = heap_open(reloid, AccessShareLock);
            if (objtype == OBJECT_TRIGGER && u_sess->attr.attr_sql.sql_compatibility == B_FORMAT && schemaname != NULL) {
                Oid relNamespaceId = RelationGetNamespace(relation);
                if (relNamespaceId != get_namespace_oid(schemaname, missing_ok)) {
                    if(!missing_ok) {
                        ereport(ERROR, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
                            errmsg("trigger in wrong schema: \"%s\".\"%s\"", schemaname, depname)));
                    } else {
                        address.objectId = InvalidOid;
                        heap_close(relation, AccessShareLock);
                        relation = NULL;
                        return address;
                    }
                }
            }
        }
    } else {
        List* relname = NIL;
        Oid reloid;

        /* Extract relation name and open relation, here allow it is synonym object. */
        relname = list_truncate(list_copy(objname), nnames - 1);

        if (objtype == OBJECT_TRIGGER && missing_ok == true) {
            relation = HeapOpenrvExtended(makeRangeVarFromNameList(relname), AccessShareLock, true, true);
            if (relation == NULL) {
                address.classId = InvalidOid;
                address.objectId = InvalidOid;
                address.objectSubId = InvalidOid;
                *relp = relation;
                return address;
            }
        } else {
            relation = HeapOpenrvExtended(makeRangeVarFromNameList(relname), AccessShareLock, false, true);
        }
        reloid = RelationGetRelid(relation);

        switch (objtype) {
            case OBJECT_RULE:
                address.classId = RewriteRelationId;
                address.objectId = get_rewrite_oid(reloid, depname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_TRIGGER:
                address.classId = TriggerRelationId;
                address.objectId = get_trigger_oid(reloid, depname, missing_ok);
                address.objectSubId = 0;
                if (OidIsValid(address.objectId) && schemaname != NULL) {
                    Oid relNamespaceId = RelationGetNamespace(relation);
                    if (relNamespaceId != get_namespace_oid(schemaname, missing_ok)) {
                        if(!missing_ok) {
                            ereport(ERROR, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
                                errmsg("trigger in wrong schema: \"%s\".\"%s\"", schemaname, depname)));
                        } else {
                            address.objectId = InvalidOid;
                        }
                    }
                }
                break;
            case OBJECT_TABCONSTRAINT:
                address.classId = ConstraintRelationId;
                address.objectId = get_relation_constraint_oid(reloid, depname, missing_ok);
                address.objectSubId = 0;
                break;
            case OBJECT_RLSPOLICY:
                address.classId = RlsPolicyRelationId;
                address.objectId = relation ? get_rlspolicy_oid(reloid, depname, missing_ok) : InvalidOid;
                address.objectSubId = 0;
                break;
            default:
                ereport(
                    ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unrecognized objtype: %d", (int)objtype)));
                /* placate compiler, which doesn't know elog won't return */
                address.classId = InvalidOid;
                address.objectId = InvalidOid;
                address.objectSubId = 0;
        }

        /* Avoid relcache leak when object not found. */
        if (!OidIsValid(address.objectId)) {
            heap_close(relation, AccessShareLock);
            relation = NULL; /* department of accident prevention */
            return address;
        }
    }

    /* Done. */
    *relp = relation;
    return address;
}

/*
 * Find the ObjectAddress for an attribute.
 */
static ObjectAddress get_object_address_attribute(
    ObjectType objtype, List* objname, Relation* relp, LOCKMODE lockmode, bool missing_ok)
{
    ObjectAddress address;
    List* relname = NIL;
    Oid reloid;
    Relation relation;
    const char* attname = NULL;
    AttrNumber attnum;

    /* Extract relation name and open relation. */
    if (list_length(objname) < 2)
        ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), errmsg("column name must be qualified")));
    attname = strVal(lfirst(list_tail(objname)));
    relname = list_truncate(list_copy(objname), list_length(objname) - 1);
    relation = relation_openrv_extended(makeRangeVarFromNameList(relname), lockmode, false, true);
    reloid = RelationGetRelid(relation);

    /* Look up attribute and construct return value. */
    attnum = get_attnum(reloid, attname);
    if (attnum == InvalidAttrNumber) {
        if (!missing_ok)
            ereport(ERROR,
                (errcode(ERRCODE_UNDEFINED_COLUMN),
                    errmsg("column \"%s\" of relation \"%s\" does not exist", attname, NameListToString(relname))));

        /* close but save lock */
        heap_close(relation, NoLock);
        address.classId = RelationRelationId;
        address.objectId = InvalidOid;
        address.objectSubId = InvalidAttrNumber;
        return address;
    }

    address.classId = RelationRelationId;
    address.objectId = reloid;
    address.objectSubId = attnum;

    *relp = relation;
    return address;
}

/*
 * Find the ObjectAddress for a publication relation.  The objname parameter
 * is the relation name; objargs contains the publication name.
 */
static ObjectAddress get_object_address_publication_rel(List *objname, List *objargs, Relation *relation,
    bool missing_ok)
{
    ObjectAddress address;
    char *pubname;
    Publication *pub;

    address.classId = PublicationRelRelationId;
    address.objectId = InvalidOid;
    address.objectSubId = InvalidOid;

    *relation = relation_openrv_extended(makeRangeVarFromNameList(objname), AccessShareLock, missing_ok);
    if (!relation)
        return address;

    /* fetch publication name from input list */
    pubname = strVal(linitial(objargs));

    /* Now look up the pg_publication tuple */
    pub = GetPublicationByName(pubname, missing_ok);
    if (!pub)
        return address;

    /* Find the publication relation mapping in syscache. */
    address.objectId =
        GetSysCacheOid2(PUBLICATIONRELMAP, ObjectIdGetDatum(RelationGetRelid(*relation)), ObjectIdGetDatum(pub->oid));
    if (!OidIsValid(address.objectId)) {
        if (!missing_ok)
            ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT),
                errmsg("publication relation \"%s\" in publication \"%s\" does not exist",
                RelationGetRelationName(*relation), pubname)));
        return address;
    }

    return address;
}

/*
 * Find the ObjectAddress for a type or domain
 */
static ObjectAddress get_object_address_type(ObjectType objtype, List* objname, bool missing_ok)
{
    ObjectAddress address;
    TypeName* typname = NULL;
    Type tup;

    Node *ptype = (Node *) linitial(objname);
    if(ptype->type == T_String)
        typname = makeTypeNameFromNameList(objname);
    else if(ptype->type == T_TypeName)
        typname = (TypeName *) ptype;
    else
        ereport(ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unkonw type: %d", (int)ptype->type)));

    address.classId = TypeRelationId;
    address.objectId = InvalidOid;
    address.objectSubId = 0;

    tup = LookupTypeName(NULL, typname, NULL);
    if (!HeapTupleIsValid(tup)) {
        if (!missing_ok)
            ereport(ERROR,
                (errcode(ERRCODE_UNDEFINED_OBJECT), errmsg("type \"%s\" does not exist", TypeNameToString(typname))));
        return address;
    }
    address.objectId = typeTypeId(tup);

    if (objtype == OBJECT_DOMAIN) {
        if (((Form_pg_type)GETSTRUCT(tup))->typtype != TYPTYPE_DOMAIN)
            ereport(ERROR,
                (errcode(ERRCODE_WRONG_OBJECT_TYPE), errmsg("\"%s\" is not a domain", TypeNameToString(typname))));
    }

#ifndef ENABLE_MULTIPLE_NODES
    if (IsPackageDependType(typeTypeId(tup), InvalidOid)) {
        ereport(ERROR,
            (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                errmodule(MOD_PLSQL),
                errmsg("Not allowed to drop type \"%s\"", TypeNameToString(typname)),
                errdetail("\"%s\" is a package or procedure type", TypeNameToString(typname)),
                errcause("feature not supported"),
                erraction("check type name")));
    }
#endif

    ReleaseSysCache(tup);

    return address;
}

/*
 * Find the ObjectAddress for an opclass or opfamily.
 */
static ObjectAddress get_object_address_opcf(ObjectType objtype, List* objname, bool missing_ok)
{
    Oid amoid;
    ObjectAddress address;

    amoid = get_am_oid(strVal(linitial(objname)), false);
    objname = list_copy_tail(objname, 1);

    switch (objtype) {
        case OBJECT_OPCLASS:
            address.classId = OperatorClassRelationId;
            address.objectId = get_opclass_oid(amoid, objname, missing_ok);
            address.objectSubId = 0;
            break;
        case OBJECT_OPFAMILY:
            address.classId = OperatorFamilyRelationId;
            address.objectId = get_opfamily_oid(amoid, objname, missing_ok);
            address.objectSubId = 0;
            break;
        default:
            ereport(ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unrecognized objtype: %d", (int)objtype)));
            /* placate compiler, which doesn't know elog won't return */
            address.classId = InvalidOid;
            address.objectId = InvalidOid;
            address.objectSubId = 0;
    }

    return address;
}

 /*
  * Find the ObjectAddress for an opclass/opfamily member.
  *
  * (The returned address corresponds to a pg_amop/pg_amproc object).
  */
static ObjectAddress
get_object_address_opf_member(ObjectType objtype,
                              List *objname, List *objargs, bool missing_ok)
{
    ObjectAddress   famaddr;
    ObjectAddress   address;
    ListCell *cell;
    List   *copy;
    char   *typenames[2];
    Oid     typeoids[2];
    int     membernum;
    int     i;
 
    /*
     * The last element of the objname list contains the strategy or procedure
     * number.  We need to strip that out before getting the opclass/family
     * address.  The rest can be used directly by get_object_address_opcf().
     */
    membernum = atoi(strVal(llast(objname)));
    copy = list_truncate(list_copy(objname), list_length(objname) - 1);
 
    /* no missing_ok support here */
    famaddr = get_object_address_opcf(OBJECT_OPFAMILY, copy, false);
 
    /* find out left/right type names and OIDs */
    i = 0;
    /* Build a tmpobjname for get_object_address_type()*/
    List* tmpobjname = list_make1(NULL); 
    foreach (cell, objargs) {
        ObjectAddress   typaddr;
        Node* node = (Node*)lfirst(cell);
        linitial(tmpobjname) = (void*)node;
        typenames[i] = TypeNameToString((TypeName*)lfirst(cell));
        typaddr = get_object_address_type(OBJECT_TYPE, tmpobjname, missing_ok);
        typeoids[i] = typaddr.objectId;
        if (i++ >= 2)
            break;
    }
    list_free(tmpobjname);
    switch (objtype) {
        case OBJECT_AMOP:
            {
                HeapTuple   tp;
 
                ObjectAddressSet(address, AccessMethodOperatorRelationId,
                                 InvalidOid);
 
                tp = SearchSysCache4(AMOPSTRATEGY,
                                     ObjectIdGetDatum(famaddr.objectId),
                                     ObjectIdGetDatum(typeoids[0]),
                                     ObjectIdGetDatum(typeoids[1]),
                                     Int16GetDatum(membernum));
                if (!HeapTupleIsValid(tp)) {
                    if (!missing_ok)
                        ereport(ERROR,
                                (errcode(ERRCODE_UNDEFINED_OBJECT),
                                 errmsg("operator %d (%s, %s) of %s does not exist",
                                        membernum, typenames[0], typenames[1],
                                        getObjectDescription(&famaddr))));
                }
                else {
                    address.objectId = HeapTupleGetOid(tp);
                    ReleaseSysCache(tp);
                }
            }
            break;
 
        case OBJECT_AMPROC:
            {
                HeapTuple   tp;
 
                ObjectAddressSet(address, AccessMethodProcedureRelationId,
                                 InvalidOid);
 
                tp = SearchSysCache4(AMPROCNUM,
                                     ObjectIdGetDatum(famaddr.objectId),
                                     ObjectIdGetDatum(typeoids[0]),
                                     ObjectIdGetDatum(typeoids[1]),
                                     Int16GetDatum(membernum));
                if (!HeapTupleIsValid(tp)) {
                    if (!missing_ok)
                        ereport(ERROR,
                                (errcode(ERRCODE_UNDEFINED_OBJECT),
                                 errmsg("function %d (%s, %s) of %s does not exist",
                                        membernum, typenames[0], typenames[1],
                                        getObjectDescription(&famaddr))));
                }
                else {
                    address.objectId = HeapTupleGetOid(tp);
                    ReleaseSysCache(tp);
                }
            }
            break;
        default:
            elog(ERROR, "unrecognized objtype: %d", (int) objtype);
    }
 
    return address;
}
 
/*
 * Check ownership of an object previously identified by get_object_address.
 */
void check_object_ownership(
    Oid roleid, ObjectType objtype, ObjectAddress address, List* objname, List* objargs, Relation relation)
{
    switch (objtype) {
        case OBJECT_INDEX:
        case OBJECT_SEQUENCE:
        case OBJECT_LARGE_SEQUENCE:
        case OBJECT_TABLE:
        case OBJECT_VIEW:
        case OBJECT_CONTQUERY:
        case OBJECT_MATVIEW:
        case OBJECT_FOREIGN_TABLE:
        case OBJECT_STREAM:
        case OBJECT_COLUMN:
        case OBJECT_TRIGGER:
            if (!pg_class_ownercheck(RelationGetRelid(relation), roleid)) {
                aclcheck_error(ACLCHECK_NO_PRIV, ACL_KIND_CLASS, RelationGetRelationName(relation));
            }
            break;
        case OBJECT_RULE:
        case OBJECT_TABCONSTRAINT:
        case OBJECT_RLSPOLICY:
            if (!pg_class_ownercheck(RelationGetRelid(relation), roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_CLASS, RelationGetRelationName(relation));
            break;
        case OBJECT_DATABASE:
            if (!pg_database_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NO_PRIV, ACL_KIND_DATABASE, NameListToString(objname));
            break;
        case OBJECT_TYPE:
            if (!pg_type_ownercheck(address.objectId, roleid))
                aclcheck_error_type(ACLCHECK_NO_PRIV, address.objectId);
            break;
        case OBJECT_DB4AI_MODEL:
        case OBJECT_DOMAIN:
        case OBJECT_ATTRIBUTE:
            if (!pg_type_ownercheck(address.objectId, roleid))
                aclcheck_error_type(ACLCHECK_NOT_OWNER, address.objectId);
            break;
        case OBJECT_AGGREGATE:
        case OBJECT_FUNCTION:
            if (!pg_proc_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NO_PRIV, ACL_KIND_PROC, NameListToString(objname));
            break;
        case OBJECT_PACKAGE:
        case OBJECT_PACKAGE_BODY:
            if (!pg_package_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NO_PRIV, ACL_KIND_PACKAGE, NameListToString(objname));
            break;
        case OBJECT_OPERATOR:
            if (!pg_oper_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_OPER, NameListToString(objname));
            break;
        case OBJECT_SCHEMA:
            if (!pg_namespace_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NO_PRIV, ACL_KIND_NAMESPACE, NameListToString(objname));
            break;
        case OBJECT_COLLATION:
            if (!pg_collation_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_COLLATION, NameListToString(objname));
            break;
        case OBJECT_CONVERSION:
            if (!pg_conversion_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_CONVERSION, NameListToString(objname));
            break;
        case OBJECT_EVENT_TRIGGER:
            if (!pg_event_trigger_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_EVENT_TRIGGER,
                              NameListToString(objname));
            break;
        case OBJECT_EXTENSION:
            if (!pg_extension_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_EXTENSION, NameListToString(objname));
            break;
        case OBJECT_FDW:
            if (!pg_foreign_data_wrapper_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_FDW, NameListToString(objname));
            break;
        case OBJECT_FOREIGN_SERVER:
            if (!pg_foreign_server_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NO_PRIV, ACL_KIND_FOREIGN_SERVER, NameListToString(objname));
            break;
        case OBJECT_LANGUAGE:
            if (!pg_language_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_LANGUAGE, NameListToString(objname));
            break;
        case OBJECT_OPCLASS:
            if (!pg_opclass_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_OPCLASS, NameListToString(objname));
            break;
        case OBJECT_OPFAMILY:
            if (!pg_opfamily_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_OPFAMILY, NameListToString(objname));
            break;
        case OBJECT_LARGEOBJECT:
            if (!u_sess->attr.attr_sql.lo_compat_privileges && !pg_largeobject_ownercheck(address.objectId, roleid))
                ereport(ERROR,
                    (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
                        errmsg("must be owner of large object %u", address.objectId)));
            break;
        case OBJECT_CAST: {
            /* We can only check permissions on the source/target types */
            TypeName* sourcetype = (TypeName*)linitial(objname);
            TypeName* targettype = (TypeName*)linitial(objargs);
            Oid sourcetypeid = typenameTypeId(NULL, sourcetype);
            Oid targettypeid = typenameTypeId(NULL, targettype);

            if (!pg_type_ownercheck(sourcetypeid, roleid) && !pg_type_ownercheck(targettypeid, roleid))
                ereport(ERROR,
                    (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
                        errmsg("must be owner of type %s or type %s",
                            format_type_be(sourcetypeid),
                            format_type_be(targettypeid))));
        } break;
        case OBJECT_TABLESPACE:
            if (!pg_tablespace_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NO_PRIV, ACL_KIND_TABLESPACE, NameListToString(objname));
            break;
        case OBJECT_TSDICTIONARY:
            if (!pg_ts_dict_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_TSDICTIONARY, NameListToString(objname));
            break;
        case OBJECT_TSCONFIGURATION:
            if (!pg_ts_config_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_TSCONFIGURATION, NameListToString(objname));
            break;
        case OBJECT_ROLE:
        case OBJECT_USER:
            /*
             * We treat roles as being "owned" by those with CREATEROLE priv,
             * except that superusers are only owned by superusers and
             * opradmin user and persistence user are only owned by the initial user.
             */
            if (is_role_persistence(address.objectId)) {
                if(roleid != INITIAL_USER_ID)
                    ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("must be initial user")));
            } else if (isOperatoradmin(address.objectId)) {
                if(roleid != INITIAL_USER_ID)
                    ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("must be initial user")));
            } else if (superuser_arg(address.objectId)) {
                if (!superuser_arg(roleid))
                    ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("must be system admin")));
            }
            /* Database Security:  Support separation of privilege.*/
            else if (systemDBA_arg(address.objectId)) {
                if (!superuser_arg(roleid))
                    ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("must be system admin")));
            } else {
                if (!has_createrole_privilege(roleid))
                    ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("must have CREATEROLE privilege")));
            }
            break;
        case OBJECT_TSPARSER:
        case OBJECT_TSTEMPLATE:
        case OBJECT_ACCESS_METHOD:
            /* Database Security:  Support separation of privilege.*/
            /* We treat these object types as being owned by superusers */
            if (!(superuser_arg(roleid) || systemDBA_arg(roleid)))
                ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("must be system admin")));
            break;

        case OBJECT_DATA_SOURCE:
            if (!pg_extension_data_source_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_DATA_SOURCE, NameListToString(objname));
            break;
        case OBJECT_DIRECTORY:
            if (!pg_directory_ownercheck(address.objectId, roleid))
                aclcheck_error(ACLCHECK_NO_PRIV, ACL_KIND_DIRECTORY, NameListToString(objname));
            break;
        case OBJECT_PUBLICATION:
            if (!pg_publication_ownercheck(address.objectId, roleid)) {
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_PUBLICATION, NameListToString(objname));
            }
            break;
        case OBJECT_SUBSCRIPTION:
            if (!pg_subscription_ownercheck(address.objectId, roleid)) {
                aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_SUBSCRIPTION, NameListToString(objname));
            }
            break;
        default:
            ereport(
                ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unrecognized object type: %d", (int)objtype)));
    }
}

/*
 * Interfaces to reference fields of ObjectPropertyType
 */
Oid
get_object_oid_index(Oid class_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    return prop->oid_index_oid;
}

int
get_object_catcache_oid(Oid class_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    return prop->oid_catcache_id;
}

int
get_object_catcache_name(Oid class_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    return prop->name_catcache_id;
}

AttrNumber
get_object_attnum_name(Oid class_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    return prop->attnum_name;
}

AttrNumber
get_object_attnum_namespace(Oid class_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    return prop->attnum_namespace;
}
AttrNumber
get_object_attnum_owner(Oid class_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    return prop->attnum_owner;
}

AttrNumber
get_object_attnum_acl(Oid class_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    return prop->attnum_acl;
}

ObjectType
get_object_type(Oid class_id, Oid object_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    if (prop->objtype == OBJECT_TABLE)
    {
        return (ObjectType)get_relkind_objtype(get_rel_relkind(object_id));
    }
    else
        return prop->objtype;
}

bool
get_object_namensp_unique(Oid class_id)
{
    const ObjectPropertyType *prop = get_object_property_data(class_id);

    return prop->is_nsp_name_unique;
}

/*
 * get_object_namespace
 *
 * Find the schema containing the specified object.  For non-schema objects,
 * this function returns InvalidOid.
 */
Oid get_object_namespace(const ObjectAddress* address)
{
    int cache;
    HeapTuple tuple;
    bool isnull = false;
    Oid oid;
    const ObjectPropertyType* property = NULL;

    /* If not owned by a namespace, just return InvalidOid. */
    property = get_object_property_data(address->classId);
    if (property->attnum_namespace == InvalidAttrNumber)
        return InvalidOid;

    /* Currently, we can only handle object types with system caches. */
    cache = property->oid_catcache_id;
    Assert(cache != -1);

    /* Fetch tuple from syscache and extract namespace attribute. */
    tuple = SearchSysCache1(cache, ObjectIdGetDatum(address->objectId));
    if (!HeapTupleIsValid(tuple))
        ereport(ERROR,
            (errcode(ERRCODE_CACHE_LOOKUP_FAILED),
                errmsg("cache lookup failed for cache %d oid %u", cache, address->objectId)));
    oid = DatumGetObjectId(SysCacheGetAttr(cache, tuple, property->attnum_namespace, &isnull));
    Assert(!isnull);
    ReleaseSysCache(tuple);

    return oid;
}

/*
 * Find ObjectProperty structure by class_id.
 */
static const ObjectPropertyType* get_object_property_data(Oid class_id)
{
    uint32 index;

    for (index = 0; index < lengthof(ObjectProperty); index++)
        if (ObjectProperty[index].class_oid == class_id)
            return &ObjectProperty[index];

    ereport(ERROR, (errcode(ERRCODE_UNRECOGNIZED_NODE_TYPE), errmsg("unrecognized class id: %u", class_id)));
    return NULL; /* not reached */
}

/*
 *  * subroutine for getObjectTypeDescription: describe a constraint type
 *   */
static void
getConstraintTypeDescription(StringInfo buffer, Oid constroid)
{
	Relation	constrRel;
	HeapTuple	constrTup;
	Form_pg_constraint constrForm;

	constrRel = heap_open(ConstraintRelationId, AccessShareLock);
	constrTup = get_catalog_object_by_oid(constrRel, constroid);
	if (!HeapTupleIsValid(constrTup))
		elog(ERROR, "cache lookup failed for constraint %u", constroid);

	constrForm = (Form_pg_constraint) GETSTRUCT(constrTup);

	if (OidIsValid(constrForm->conrelid))
		appendStringInfoString(buffer, "table constraint");
	else if (OidIsValid(constrForm->contypid))
		appendStringInfoString(buffer, "domain constraint");
	else
		elog(ERROR, "invalid constraint");

	heap_close(constrRel, AccessShareLock);
}

char *getObjectTypeDescription(const ObjectAddress *object)
{
    StringInfoData buffer;

    initStringInfo(&buffer);

    switch (getObjectClass(object)) {
        case OCLASS_CONSTRAINT:
                         getConstraintTypeDescription(&buffer, object->objectId);
            break;
 
        case OCLASS_CLASS:
            getRelationTypeDescription(&buffer, object->objectId,
                                        object->objectSubId);
            break;

        case OCLASS_PROC:
            getProcedureTypeDescription(&buffer, object->objectId);
            break;

        case OCLASS_TYPE:
            appendStringInfoString(&buffer, "type");
            break;

        case OCLASS_CAST:
            appendStringInfoString(&buffer, "cast");
            break;

        case OCLASS_COLLATION:
            appendStringInfoString(&buffer, "collation");
            break;

        case OCLASS_CONVERSION:
            appendStringInfoString(&buffer, "conversion");
            break;

        case OCLASS_DEFAULT:
            appendStringInfoString(&buffer, "default value");
            break;

        case OCLASS_LANGUAGE:
            appendStringInfoString(&buffer, "language");
            break;

        case OCLASS_LARGEOBJECT:
            appendStringInfoString(&buffer, "large object");
            break;

        case OCLASS_OPERATOR:
            appendStringInfoString(&buffer, "operator");
            break;

        case OCLASS_OPCLASS:
            appendStringInfoString(&buffer, "operator class");
            break;

        case OCLASS_OPFAMILY:
            appendStringInfoString(&buffer, "operator family");
            break;

        case OCLASS_AM:
            appendStringInfoString(&buffer, "access method");
            break;

        case OCLASS_AMOP:
            appendStringInfoString(&buffer, "operator of access method");
            break;

        case OCLASS_AMPROC:
            appendStringInfoString(&buffer, "function of access method");
            break;

        case OCLASS_REWRITE:
            appendStringInfoString(&buffer, "rule");
            break;

        case OCLASS_TRIGGER:
            appendStringInfoString(&buffer, "trigger");
            break;

        case OCLASS_SCHEMA:
            appendStringInfoString(&buffer, "schema");
            break;

        case OCLASS_TSPARSER:
            appendStringInfoString(&buffer, "text search parser");
            break;

        case OCLASS_TSDICT:
            appendStringInfoString(&buffer, "text search dictionary");
            break;

        case OCLASS_TSTEMPLATE:
            appendStringInfoString(&buffer, "text search template");
            break;
        case OCLASS_TSCONFIG:
            appendStringInfoString(&buffer, "text search configuration");
            break;

        case OCLASS_ROLE:
            appendStringInfoString(&buffer, "role");
            break;

        case OCLASS_DATABASE:
            appendStringInfoString(&buffer, "database");
            break;

        case OCLASS_TBLSPACE:
            appendStringInfoString(&buffer, "tablespace");
            break;

        case OCLASS_FDW:
            appendStringInfoString(&buffer, "foreign-data wrapper");
            break;

        case OCLASS_FOREIGN_SERVER:
            appendStringInfoString(&buffer, "server");
            break;

        case OCLASS_USER_MAPPING:
            appendStringInfoString(&buffer, "user mapping");
            break;

        case OCLASS_DEFACL:
            appendStringInfoString(&buffer, "default acl");
            break;

        case OCLASS_EXTENSION:
            appendStringInfoString(&buffer, "extension");
            break;

        case OCLASS_EVENT_TRIGGER:
            appendStringInfoString(&buffer, "event trigger");
            break;

		case OCLASS_PUBLICATION:
			appendStringInfoString(&buffer, "publication");
			break;

		case OCLASS_PUBLICATION_REL:
			appendStringInfoString(&buffer, "publication relation");
			break;      

		case OCLASS_SUBSCRIPTION:
			appendStringInfoString(&buffer, "subscription");
			break;                  

        default:
            appendStringInfoString(&buffer, "unsupport type");
            break;

     }

    return buffer.data;
}

/*
 * getObjectTypeDescription
 */
static void getProcedureTypeDescription(StringInfo buffer, Oid procid)
{
    Datum tmp;
    bool isNull;
    HeapTuple procTup;

    procTup = SearchSysCache1(PROCOID, ObjectIdGetDatum(procid));
    if (!HeapTupleIsValid(procTup))
        elog(ERROR, "cache lookup failed for procedure %u", procid);

    tmp = SysCacheGetAttr(PROCOID, procTup, Anum_pg_proc_prokind, &isNull);
    if (isNull)
        ereport(ERROR,(errmodule(MOD_OPT),
            errcode(ERRCODE_UNEXPECTED_NULL_VALUE),
            errmsg("null prokind for function %u", procid)));

    char prokind = DatumGetChar(tmp);

    if (prokind == PROKIND_AGGREGATE)
        appendStringInfoString(buffer, "aggregate");
    else if (PROC_IS_PRO(prokind))
        appendStringInfoString(buffer, "procedure");
    else 
        appendStringInfoString(buffer, "function");

    ReleaseSysCache(procTup);
 }

/*
 * getObjectTypeDescription
 */
static void getRelationTypeDescription(StringInfo buffer, Oid relid, int32 objectSubId)
{
       HeapTuple       relTup;
       Form_pg_class relForm;

       relTup = SearchSysCache1(RELOID,
                                                        ObjectIdGetDatum(relid));
       if (!HeapTupleIsValid(relTup))
               elog(ERROR, "cache lookup failed for relation %u", relid);
       relForm = (Form_pg_class) GETSTRUCT(relTup);

       switch (relForm->relkind) {
               case RELKIND_RELATION:
                       appendStringInfoString(buffer, "table");
                       break;
               case RELKIND_INDEX:
                       appendStringInfoString(buffer, "index");
                       break;
               case RELKIND_SEQUENCE:
                       appendStringInfoString(buffer, "sequence");
                       break;
               case RELKIND_TOASTVALUE:
                       appendStringInfoString(buffer, "toast table");
                       break;
               case RELKIND_VIEW:
                       appendStringInfoString(buffer, "view");
                       break;
               case RELKIND_COMPOSITE_TYPE:
                       appendStringInfoString(buffer, "composite type");
                       break;
               case RELKIND_FOREIGN_TABLE:
                       appendStringInfoString(buffer, "foreign table");
                       break;
               case RELKIND_GLOBAL_INDEX:
                       appendStringInfoString(buffer, "index");
                       break;
               default:
                       /* should not here */
                       appendStringInfoString(buffer, "relation");
                       break;
       }

       if (objectSubId != 0)
               appendStringInfoString(buffer, " column");

       ReleaseSysCache(relTup);
 }

ObjectType
get_relkind_objtype(char relkind)
{
    switch (relkind) {
        case RELKIND_RELATION:
            return OBJECT_TABLE;
        case RELKIND_INDEX:
            return OBJECT_INDEX;
        case RELKIND_SEQUENCE:
            return OBJECT_SEQUENCE;
        case RELKIND_VIEW:
            return OBJECT_VIEW;
        case RELKIND_MATVIEW:
            return OBJECT_MATVIEW;
        case RELKIND_FOREIGN_TABLE:
            return OBJECT_FOREIGN_TABLE;

            /*
             * other relkinds are not supported here because they don't map to
             * OBJECT_* values
             */
        default:
            elog(ERROR, "unexpected relkind: %d", relkind);
            return (ObjectType)0;
    }
}

 /*
  * Return whether we have useful data for the given object class in the
  * ObjectProperty table.
  */
bool
is_objectclass_supported(Oid class_id)
{
    size_t         index;
 
    for (index = 0; index < lengthof(ObjectProperty); index++) {
        if (ObjectProperty[index].class_oid == class_id)
            return true;
    }
 
    return false;
}

 
 /*
  * Return a copy of the tuple for the object with the given object OID, from
  * the given catalog (which must have been opened by the caller and suitably
  * locked).  NULL is returned if the OID is not found.
  *
  * We try a syscache first, if available.
  */
HeapTuple
get_catalog_object_by_oid(Relation catalog, Oid objectId)
{
    HeapTuple   tuple;
    Oid         classId = RelationGetRelid(catalog);
    int         oidCacheId = get_object_catcache_oid(classId);
 
    if (oidCacheId > 0) {
        tuple = SearchSysCacheCopy1(oidCacheId, ObjectIdGetDatum(objectId));
        if (!HeapTupleIsValid(tuple))  /* should not happen */
            return NULL;
    }
    else {
        Oid         oidIndexId = get_object_oid_index(classId);
        SysScanDesc scan;
        ScanKeyData skey;
 
        Assert(OidIsValid(oidIndexId));
 
        ScanKeyInit(&skey,
                    ObjectIdAttributeNumber,
                    BTEqualStrategyNumber, F_OIDEQ,
                    ObjectIdGetDatum(objectId));
 
        scan = systable_beginscan(catalog, oidIndexId, true,
                                  SnapshotNow, 1, &skey);
        tuple = systable_getnext(scan);
        if (!HeapTupleIsValid(tuple)) {
            systable_endscan(scan);
            return NULL;
        }
        tuple = heap_copytuple(tuple);
 
        systable_endscan(scan);
    }
 
    return tuple;
}
 
 /*
  * Return a palloc'ed string that identifies an object.
  *
  * This is for machine consumption, so it's not translated.  All elements are
  * schema-qualified when appropriate.
  */
char *
getObjectIdentity(const ObjectAddress *object) 
{
    return getObjectIdentityParts(object, NULL, NULL);    
}
/*
 * As above, but more detailed.
 *
 * There are two sets of return values: the identity itself as a palloc'd
 * string is returned.  objname and objargs, if not NULL, are output parameters
 * that receive lists of C-strings that are useful to give back to
 * get_object_address() to reconstruct the ObjectAddress.
 */
char *
getObjectIdentityParts(const ObjectAddress *object,
                      List **objname, List **objargs)
{
    StringInfoData buffer;

    initStringInfo(&buffer);

    /*
     * Make sure that both objname and objargs were passed, or none was; and
     * initialize them to empty lists.  For objname this is useless because it
     * will be initialized in all cases inside the switch; but we do it anyway
     * so that we can test below that no branch leaves it unset.
     */
    Assert(PointerIsValid(objname) == PointerIsValid(objargs));
    if (objname) {
        *objname = NIL;
        *objargs = NIL;
    }

    switch (getObjectClass(object)) {
        case OCLASS_RLSPOLICY:
            {
                Relation pg_rlspolicy = heap_open(RlsPolicyRelationId, AccessShareLock);
                /* Use the index to search for the tuple */
                ScanKeyData scanKey[1];
                ScanKeyInit(&scanKey[0],
                ObjectIdAttributeNumber,
                BTEqualStrategyNumber,
                F_OIDEQ,
                ObjectIdGetDatum(object->objectId));

                SysScanDesc scanDesc = systable_beginscan(pg_rlspolicy, PgRlspolicyOidIndex, true, NULL, 1, scanKey);

                HeapTuple tuple = systable_getnext(scanDesc);
                if (HeapTupleIsValid(tuple) == false) {
                    ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT),
                        errmsg("could not find tuple for policy %u", object->objectId)));
                }
                Form_pg_rlspolicy rlspolicy = (Form_pg_rlspolicy)GETSTRUCT(tuple);
                /* Construct string info */
                appendStringInfo(&buffer, _("row level security policy %s on "), rlspolicy->polname.data);
               // getRelationDescription(&buffer, rlspolicy->polrelid);
                if (objname)
                    *objname = lappend(*objname, rlspolicy->polname.data);
                /* Release resource */
                systable_endscan(scanDesc);
                heap_close(pg_rlspolicy, AccessShareLock);
            }
            break;
        case OCLASS_CLASS:
            getRelationIdentity(&buffer, object->objectId, objname);
            if (object->objectSubId != 0) {
                char   *attr;

                attr = get_attname(object->objectId, object->objectSubId);
                appendStringInfo(&buffer, ".%s", quote_identifier(attr));
                if (objname)
                    *objname = lappend(*objname, attr);
            }
            break;

        case OCLASS_PROC:
            appendStringInfoString(&buffer,
                             format_procedure_qualified(object->objectId));
            if (objname)
                format_procedure_parts(object->objectId, objname, objargs);
            break;

        case OCLASS_TYPE:
            {
                char       *typeout;

                typeout = format_type_be_qualified(object->objectId);
                appendStringInfoString(&buffer, typeout);
                if (objname)
                    *objname = list_make1(typeout);
            }
            break;

        case OCLASS_CAST:
            {
                Relation    castRel;
                HeapTuple   tup;
                Form_pg_cast castForm;

                castRel = heap_open(CastRelationId, AccessShareLock);

                tup = get_catalog_object_by_oid(castRel, object->objectId);

                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "could not find tuple for cast %u",
                         object->objectId);

                castForm = (Form_pg_cast) GETSTRUCT(tup);

                appendStringInfo(&buffer, "(%s AS %s)",
                                 format_type_be_qualified(castForm->castsource),
                                 format_type_be_qualified(castForm->casttarget));

                if (objname) {
                    *objname = list_make1(format_type_be_qualified(castForm->castsource));
                    *objargs = list_make1(format_type_be_qualified(castForm->casttarget));
                }

                heap_close(castRel, AccessShareLock);
                break;
            }

        case OCLASS_COLLATION:
            {
                HeapTuple   collTup;
                Form_pg_collation coll;
                char   *schema;

                collTup = SearchSysCache1(COLLOID,
                                          ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(collTup))
                    elog(ERROR, "cache lookup failed for collation %u",
                         object->objectId);
                coll = (Form_pg_collation) GETSTRUCT(collTup);
                schema = get_namespace_name_or_temp(coll->collnamespace);
                appendStringInfoString(&buffer,
                                       quote_qualified_identifier(schema,
                                                                  NameStr(coll->collname)));
                if (objname)
                    *objname = list_make2(schema,
                                          pstrdup(NameStr(coll->collname)));
                ReleaseSysCache(collTup);
                break;
            }

        case OCLASS_CONSTRAINT:
            {
                HeapTuple   conTup;
                Form_pg_constraint con;

                conTup = SearchSysCache1(CONSTROID,
                                         ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(conTup))
                    elog(ERROR, "cache lookup failed for constraint %u",
                         object->objectId);
                con = (Form_pg_constraint) GETSTRUCT(conTup);

                if (OidIsValid(con->conrelid)) {
                    appendStringInfo(&buffer, "%s on ",
                                     quote_identifier(NameStr(con->conname)));
                    getRelationIdentity(&buffer, con->conrelid, objname);
                    if (objname)
                        *objname = lappend(*objname, pstrdup(NameStr(con->conname)));
                }
                else {
                    ObjectAddress   domain;

                    Assert(OidIsValid(con->contypid));
                    domain.classId = TypeRelationId;
                    domain.objectId = con->contypid;
                    domain.objectSubId = 0;

                    appendStringInfo(&buffer, "%s on %s",
                                     quote_identifier(NameStr(con->conname)),
                                     getObjectIdentityParts(&domain, objname, objargs));

                    if (objname)
                        *objargs = lappend(*objargs, pstrdup(NameStr(con->conname)));
                }

                ReleaseSysCache(conTup);
                break;
            }

        case OCLASS_CONVERSION:
            {
                HeapTuple   conTup;
                Form_pg_conversion conForm;
                char       *schema;

                conTup = SearchSysCache1(CONVOID,
                                         ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(conTup))
                    elog(ERROR, "cache lookup failed for conversion %u",
                         object->objectId);
                conForm = (Form_pg_conversion) GETSTRUCT(conTup);
                schema = get_namespace_name_or_temp(conForm->connamespace);
                appendStringInfoString(&buffer,
                                       quote_qualified_identifier(schema,
                                                                  NameStr(conForm->conname)));
                if (objname)
                    *objname = list_make2(schema,
                                          pstrdup(NameStr(conForm->conname)));
                ReleaseSysCache(conTup);
                break;
            }

        case OCLASS_DEFAULT:
            {
                Relation    attrdefDesc;
                ScanKeyData skey[1];
                SysScanDesc adscan;

                HeapTuple   tup;
                Form_pg_attrdef attrdef;
                ObjectAddress colobject;

                attrdefDesc = heap_open(AttrDefaultRelationId, AccessShareLock);

                ScanKeyInit(&skey[0],
                            ObjectIdAttributeNumber,
                            BTEqualStrategyNumber, F_OIDEQ,
                            ObjectIdGetDatum(object->objectId));

                adscan = systable_beginscan(attrdefDesc, AttrDefaultOidIndexId,
                                            true, NULL, 1, skey);

                tup = systable_getnext(adscan);

                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "could not find tuple for attrdef %u",
                         object->objectId);

                attrdef = (Form_pg_attrdef) GETSTRUCT(tup);

                colobject.classId = RelationRelationId;
                colobject.objectId = attrdef->adrelid;
                colobject.objectSubId = attrdef->adnum;

                appendStringInfo(&buffer, "for %s",
                                 getObjectIdentityParts(&colobject,
                                                        objname, objargs));

                systable_endscan(adscan);
                heap_close(attrdefDesc, AccessShareLock);
                break;
            }

        case OCLASS_LANGUAGE:
            {
                HeapTuple   langTup;
                Form_pg_language langForm;

                langTup = SearchSysCache1(LANGOID,
                                          ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(langTup))
                    elog(ERROR, "cache lookup failed for language %u",
                         object->objectId);
                langForm = (Form_pg_language) GETSTRUCT(langTup);
                appendStringInfoString(&buffer,
                                 quote_identifier(NameStr(langForm->lanname)));
                if (objname)
                    *objname = list_make1(pstrdup(NameStr(langForm->lanname)));
                ReleaseSysCache(langTup);
                break;
            }
        case OCLASS_LARGEOBJECT:
            appendStringInfo(&buffer, "%u",
                             object->objectId);
            if (objname)
                *objname = list_make1(psprintf("%u", object->objectId));
            break;

        case OCLASS_OPERATOR:
            appendStringInfoString(&buffer,
                             format_operator_qualified(object->objectId));
            if (objname)
                format_operator_parts(object->objectId, objname, objargs);
            break;

        case OCLASS_OPCLASS:
            {
                HeapTuple   opcTup;
                Form_pg_opclass opcForm;
                HeapTuple    amTup;
                Form_pg_am    amForm;
                char       *schema;

                opcTup = SearchSysCache1(CLAOID,
                                         ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(opcTup))
                    elog(ERROR, "cache lookup failed for opclass %u",
                         object->objectId);
                opcForm = (Form_pg_opclass) GETSTRUCT(opcTup);
                schema = get_namespace_name_or_temp(opcForm->opcnamespace);

                amTup = SearchSysCache1(AMOID,
                                        ObjectIdGetDatum(opcForm->opcmethod));
                if (!HeapTupleIsValid(amTup))
                    elog(ERROR, "cache lookup failed for access method %u",
                         opcForm->opcmethod);
                amForm = (Form_pg_am) GETSTRUCT(amTup);

                appendStringInfo(&buffer, "%s USING %s",
                                 quote_qualified_identifier(schema,
                                                            NameStr(opcForm->opcname)),
                                quote_identifier(NameStr(amForm->amname)));
                if (objname)
                    *objname = list_make3(pstrdup(NameStr(amForm->amname)),
                                          schema,
                                          pstrdup(NameStr(opcForm->opcname)));

                ReleaseSysCache(amTup);
                ReleaseSysCache(opcTup);
                break;
            }

        case OCLASS_OPFAMILY:
            getOpFamilyIdentity(&buffer, object->objectId, objname);
            break;

        case OCLASS_AM: {
            char       *amname;

            amname = get_am_name(object->objectId);
            if (!amname)
                elog(ERROR, "cache lookup failed for access method %u", object->objectId);

            appendStringInfoString(&buffer, quote_identifier(amname));
            if (objname)
                *objname = list_make1(amname);
            break;
        }


        case OCLASS_AMOP:
            {
                Relation    amopDesc;
                HeapTuple   tup;
                ScanKeyData skey[1];
                SysScanDesc amscan;
                Form_pg_amop amopForm;
                StringInfoData opfam;
                char       *ltype;
                char       *rtype;

                amopDesc = heap_open(AccessMethodOperatorRelationId,
                                     AccessShareLock);

                ScanKeyInit(&skey[0],
                            ObjectIdAttributeNumber,
                            BTEqualStrategyNumber, F_OIDEQ,
                            ObjectIdGetDatum(object->objectId));

                amscan = systable_beginscan(amopDesc, AccessMethodOperatorOidIndexId, true,
                                            NULL, 1, skey);

                tup = systable_getnext(amscan);

                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "could not find tuple for amop entry %u",
                         object->objectId);

                amopForm = (Form_pg_amop) GETSTRUCT(tup);

                initStringInfo(&opfam);
                getOpFamilyIdentity(&opfam, amopForm->amopfamily, objname);

                ltype = format_type_be_qualified(amopForm->amoplefttype);
                rtype = format_type_be_qualified(amopForm->amoprighttype);

                if (objname) {
                    *objname = lappend(*objname,
                                       psprintf("%d", amopForm->amopstrategy));
                    *objargs = list_make2(ltype, rtype);
                }

                appendStringInfo(&buffer, "operator %d (%s, %s) of %s",
                                 amopForm->amopstrategy,
                                 ltype, rtype, opfam.data);

                pfree(opfam.data);

                systable_endscan(amscan);
                heap_close(amopDesc, AccessShareLock);
                break;
            }

        case OCLASS_AMPROC:
            {
                Relation    amprocDesc;
                ScanKeyData skey[1];
                SysScanDesc amscan;
                HeapTuple   tup;
                Form_pg_amproc amprocForm;
                StringInfoData opfam;
                char       *ltype;
                char       *rtype;

                amprocDesc = heap_open(AccessMethodProcedureRelationId,
                                       AccessShareLock);

                ScanKeyInit(&skey[0],
                            ObjectIdAttributeNumber,
                            BTEqualStrategyNumber, F_OIDEQ,
                            ObjectIdGetDatum(object->objectId));

                amscan = systable_beginscan(amprocDesc, AccessMethodProcedureOidIndexId, true,
                                            NULL, 1, skey);

                tup = systable_getnext(amscan);

                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "could not find tuple for amproc entry %u",
                         object->objectId);

                amprocForm = (Form_pg_amproc) GETSTRUCT(tup);

                initStringInfo(&opfam);
                getOpFamilyIdentity(&opfam, amprocForm->amprocfamily, objname);

                ltype = format_type_be_qualified(amprocForm->amproclefttype);
                rtype = format_type_be_qualified(amprocForm->amprocrighttype);

                if (objname) {
                    *objname = lappend(*objname,
                                       psprintf("%d", amprocForm->amprocnum));
                    *objargs = list_make2(ltype, rtype);
                }

                appendStringInfo(&buffer, "function %d (%s, %s) of %s",
                                 amprocForm->amprocnum,
                                 ltype, rtype, opfam.data);

                pfree(opfam.data);

                systable_endscan(amscan);
                heap_close(amprocDesc, AccessShareLock);
                break;
            }

        case OCLASS_REWRITE:
            {
                Relation    ruleDesc;
                HeapTuple   tup;
                Form_pg_rewrite rule;

                ruleDesc = heap_open(RewriteRelationId, AccessShareLock);

                tup = get_catalog_object_by_oid(ruleDesc, object->objectId);

                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "could not find tuple for rule %u",
                         object->objectId);

                rule = (Form_pg_rewrite) GETSTRUCT(tup);

                appendStringInfo(&buffer, "%s on ",
                                 quote_identifier(NameStr(rule->rulename)));
                getRelationIdentity(&buffer, rule->ev_class, objname);
                if (objname)
                    *objname = lappend(*objname, pstrdup(NameStr(rule->rulename)));

                heap_close(ruleDesc, AccessShareLock);
                break;
            }

        case OCLASS_TRIGGER:
            {
                Relation    trigDesc;
                HeapTuple   tup;
                Form_pg_trigger trig;

                trigDesc = heap_open(TriggerRelationId, AccessShareLock);

                tup = get_catalog_object_by_oid(trigDesc, object->objectId);

                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "could not find tuple for trigger %u",
                         object->objectId);

                trig = (Form_pg_trigger) GETSTRUCT(tup);

                appendStringInfo(&buffer, "%s on ",
                                 quote_identifier(NameStr(trig->tgname)));
                getRelationIdentity(&buffer, trig->tgrelid, objname);
                if (objname)
                    *objname = lappend(*objname, pstrdup(NameStr(trig->tgname)));

                heap_close(trigDesc, AccessShareLock);
                break;
            }

        case OCLASS_SCHEMA:
            {
                char       *nspname;

                nspname = get_namespace_name_or_temp(object->objectId);
                if (!nspname)
                    elog(ERROR, "cache lookup failed for namespace %u",
                         object->objectId);
                appendStringInfoString(&buffer,
                                 quote_identifier(nspname));
                if (objname)
                    *objname = list_make1(nspname);
                break;
            }
 
        case OCLASS_TSPARSER:
            {
                HeapTuple   tup;
                Form_pg_ts_parser formParser;
                char       *schema;

                tup = SearchSysCache1(TSPARSEROID,
                                      ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "cache lookup failed for text search parser %u",
                         object->objectId);
                formParser = (Form_pg_ts_parser) GETSTRUCT(tup);
                schema = get_namespace_name_or_temp(formParser->prsnamespace);
                appendStringInfoString(&buffer,
                                       quote_qualified_identifier(schema,
                                                                  NameStr(formParser->prsname)));
                if (objname)
                    *objname = list_make2(schema,
                                          pstrdup(NameStr(formParser->prsname)));
                ReleaseSysCache(tup);
                break;
            }

        case OCLASS_TSDICT:
            {
                HeapTuple    tup;
                Form_pg_ts_dict formDict;
                char       *schema;

                tup = SearchSysCache1(TSDICTOID,
                                      ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "cache lookup failed for text search dictionary %u",
                         object->objectId);
                formDict = (Form_pg_ts_dict) GETSTRUCT(tup);
                schema = get_namespace_name_or_temp(formDict->dictnamespace);
                appendStringInfoString(&buffer,
                                       quote_qualified_identifier(schema,
                                                                  NameStr(formDict->dictname)));
                if (objname)
                    *objname = list_make2(schema,
                                          pstrdup(NameStr(formDict->dictname)));
                ReleaseSysCache(tup);
                break;
            }

        case OCLASS_TSTEMPLATE:
            {
                HeapTuple   tup;
                Form_pg_ts_template formTmpl;
                char       *schema;

                tup = SearchSysCache1(TSTEMPLATEOID,
                                      ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "cache lookup failed for text search template %u",
                         object->objectId);
                formTmpl = (Form_pg_ts_template) GETSTRUCT(tup);
                schema = get_namespace_name_or_temp(formTmpl->tmplnamespace);
                appendStringInfoString(&buffer,
                                       quote_qualified_identifier(schema,
                                                                  NameStr(formTmpl->tmplname)));
                if (objname)
                    *objname = list_make2(schema,
                                          pstrdup(NameStr(formTmpl->tmplname)));
                ReleaseSysCache(tup);
                break;
            }

        case OCLASS_TSCONFIG:
            {
                HeapTuple   tup;
                Form_pg_ts_config formCfg;
                char       *schema;

                tup = SearchSysCache1(TSCONFIGOID,
                                      ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "cache lookup failed for text search configuration %u",
                         object->objectId);
                formCfg = (Form_pg_ts_config) GETSTRUCT(tup);
                schema = get_namespace_name_or_temp(formCfg->cfgnamespace);
                appendStringInfoString(&buffer,
                                       quote_qualified_identifier(schema,
                                                                  NameStr(formCfg->cfgname)));
                if (objname)
                    *objname = list_make2(schema,
                                          pstrdup(NameStr(formCfg->cfgname)));
                ReleaseSysCache(tup);
                break;
            }

        case OCLASS_ROLE:
            {
                char   *username;

                username = GetUserNameFromId(object->objectId);
                if (objname)
                    *objname = list_make1(username);
                appendStringInfoString(&buffer,
                                 quote_identifier(username));
                break;
            }

        case OCLASS_DATABASE:
            {
                char       *datname;

                datname = get_database_name(object->objectId);
                if (!datname)
                    elog(ERROR, "cache lookup failed for database %u",
                         object->objectId);
                if (objname)
                    *objname = list_make1(datname);
                appendStringInfoString(&buffer,
                                 quote_identifier(datname));
                break;
            }

        case OCLASS_TBLSPACE:
            {
                char       *tblspace;

                tblspace = get_tablespace_name(object->objectId);
                if (!tblspace)
                    elog(ERROR, "cache lookup failed for tablespace %u",
                         object->objectId);
                if (objname)
                    *objname = list_make1(tblspace);
                appendStringInfoString(&buffer,
                                 quote_identifier(tblspace));
                break;
            }

        case OCLASS_FDW:
            {
                ForeignDataWrapper *fdw;

                fdw = GetForeignDataWrapper(object->objectId);
                appendStringInfoString(&buffer, quote_identifier(fdw->fdwname));
                if (objname)
                    *objname = list_make1(pstrdup(fdw->fdwname));
                break;
            }

        case OCLASS_FOREIGN_SERVER:
            {
                ForeignServer *srv;

                srv = GetForeignServer(object->objectId);
                appendStringInfoString(&buffer,
                                 quote_identifier(srv->servername));
                if (objname)
                    *objname = list_make1(pstrdup(srv->servername));
                break;
            }

        case OCLASS_USER_MAPPING:
            {
                HeapTuple   tup;
                Oid         useid;
                Form_pg_user_mapping umform;
                ForeignServer *srv;
                const char *usename;

                tup = SearchSysCache1(USERMAPPINGOID,
                                      ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "cache lookup failed for user mapping %u",
                         object->objectId);
                umform = (Form_pg_user_mapping) GETSTRUCT(tup);
                useid = umform->umuser;
                srv = GetForeignServer(umform->umserver);

                ReleaseSysCache(tup);

                if (OidIsValid(useid))
                    usename = GetUserNameFromId(useid);
                else
                    usename = "public";

                if (objname) {
                    *objname = list_make1(pstrdup(usename));
                    *objargs = list_make1(pstrdup(srv->servername));
                }

                appendStringInfo(&buffer, "%s on server %s",
                                 quote_identifier(usename),
                                 srv->servername);
                break;
            }

        case OCLASS_DEFACL:
            {
                Relation    defaclrel;
                ScanKeyData skey[1];
                SysScanDesc rcscan;
                HeapTuple   tup;
                Form_pg_default_acl defacl;
                char       *schema;
                char       *username;

                defaclrel = heap_open(DefaultAclRelationId, AccessShareLock);

                ScanKeyInit(&skey[0],
                            ObjectIdAttributeNumber,
                            BTEqualStrategyNumber, F_OIDEQ,
                            ObjectIdGetDatum(object->objectId));

                rcscan = systable_beginscan(defaclrel, DefaultAclOidIndexId,
                                            true, NULL, 1, skey);

                tup = systable_getnext(rcscan);

                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "could not find tuple for default ACL %u",
                         object->objectId);

                defacl = (Form_pg_default_acl) GETSTRUCT(tup);

                username = GetUserNameFromId(defacl->defaclrole);
                appendStringInfo(&buffer,
                                 "for role %s",
                                 quote_identifier(username));

                if (OidIsValid(defacl->defaclnamespace)) {
                    schema = get_namespace_name_or_temp(defacl->defaclnamespace);
                    appendStringInfo(&buffer,
                                     " in schema %s",
                                     quote_identifier(schema));
                }
                else
                    schema = NULL;

                switch (defacl->defaclobjtype) {
                    case DEFACLOBJ_RELATION:
                        appendStringInfoString(&buffer,
                                               " on tables");
                        break;
                    case DEFACLOBJ_SEQUENCE:
                        appendStringInfoString(&buffer,
                                               " on sequences");
                        break;
                    case DEFACLOBJ_FUNCTION:
                        appendStringInfoString(&buffer,
                                               " on functions");
                        break;
                    case DEFACLOBJ_TYPE:
                        appendStringInfoString(&buffer,
                                               " on types");
                        break;
                }

                if (objname) {
                    *objname = list_make1(username);
                    if (schema)
                        *objname = lappend(*objname, schema);
                    *objargs = list_make1(psprintf("%c", defacl->defaclobjtype));
                }

                systable_endscan(rcscan);
                heap_close(defaclrel, AccessShareLock);
                break;
            }

        case OCLASS_EXTENSION:
            {
                char       *extname;

                extname = get_extension_name(object->objectId);
                if (!extname)
                    elog(ERROR, "cache lookup failed for extension %u",
                         object->objectId);
                appendStringInfoString(&buffer, quote_identifier(extname));
                if (objname)
                    *objname = list_make1(extname);
                break;
            }

        case OCLASS_EVENT_TRIGGER:
            {
                HeapTuple   tup;
                Form_pg_event_trigger trigForm;

                /* no objname support here */
                if (objname)
                    *objname = NIL;

                tup = SearchSysCache1(EVENTTRIGGEROID,
                                      ObjectIdGetDatum(object->objectId));
                if (!HeapTupleIsValid(tup))
                    elog(ERROR, "cache lookup failed for event trigger %u",
                         object->objectId);
                trigForm = (Form_pg_event_trigger) GETSTRUCT(tup);
                appendStringInfoString(&buffer,
                                 quote_identifier(NameStr(trigForm->evtname)));
                ReleaseSysCache(tup);
                break;
            }

 		case OCLASS_PUBLICATION:
			{
				char	   *pubname;
                /*missing is not ok here since pubname cannot be null*/
				pubname = get_publication_name(object->objectId,false);
				appendStringInfoString(&buffer,
									   quote_identifier(pubname));
				if (objname)
					*objname = list_make1(pubname);
				break;
			}

		case OCLASS_PUBLICATION_REL:
			{
				HeapTuple	tup;
				char	   *pubname;
				Form_pg_publication_rel prform;
                ScanKeyData scanKey[1];
                ScanKeyInit(&scanKey[0], ObjectIdAttributeNumber, BTEqualStrategyNumber, F_OIDEQ, ObjectIdGetDatum(object->objectId));

                Relation rel = heap_open(PublicationRelRelationId, RowExclusiveLock);
                SysScanDesc scanDesc = systable_beginscan(rel, PublicationRelObjectIndexId, true, NULL, 1, scanKey);
                tup = systable_getnext(scanDesc);
                if (!HeapTupleIsValid(tup)) {
                    ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT),
                                    errmsg("could not find tuple for publication %u", object->objectId)));
                }
				prform = (Form_pg_publication_rel) GETSTRUCT(tup);
                /*missing is not ok here since pubname cannot be null*/
				pubname = get_publication_name(prform->prpubid,false);

				getRelationIdentity(&buffer, prform->prrelid, objname);
				appendStringInfo(&buffer, " in publication %s", pubname);

				if (objargs)
					*objargs = list_make1(pubname);

                systable_endscan(scanDesc);
                heap_close(rel, RowExclusiveLock);
				break;
			}      

		case OCLASS_SUBSCRIPTION:
			{
				char	   *subname;
                /*missing is not ok here since subname cannot be null*/
				subname = get_subscription_name(object->objectId,false);
				appendStringInfoString(&buffer,
									   quote_identifier(subname));
				if (objname)
					*objname = list_make1(subname);
				break;
			}

        default:
            appendStringInfo(&buffer, "unrecognized object %u %u %d",
                             object->classId,
                             object->objectId,
                             object->objectSubId);
            break;
    }
 
 
    /*
     * If a get_object_address representation was requested, make sure we are
     * providing one.  We don't check objargs, because many of the cases above
     * leave it as NIL.
     */
    if (objname && *objname == NIL)
        elog(ERROR, "requested object address for unsupported object class %d: text result \"%s\"",
             (int) getObjectClass(object), buffer.data);

    return buffer.data;
}
 /*
  * SQL-level callable function to obtain object type + identity
  */
Datum
pg_identify_object(PG_FUNCTION_ARGS)
{
    Oid         classid = PG_GETARG_OID(0);
    Oid         objid = PG_GETARG_OID(1);
    int32       subobjid = PG_GETARG_INT32(2);
    Oid         schema_oid = InvalidOid;
    const char *objname = NULL;
    ObjectAddress address;
    Datum       values[4];
    bool        nulls[4];
    TupleDesc   tupdesc;
    HeapTuple   htup;
 
    address.classId = classid;
    address.objectId = objid;
    address.objectSubId = subobjid;
 
    /*
     * Construct a tuple descriptor for the result row.  This must match this
     * function's pg_proc entry!
     */
    tupdesc = CreateTemplateTupleDesc(4, false);
    TupleDescInitEntry(tupdesc, (AttrNumber) 1, "type",
                       TEXTOID, -1, 0);
    TupleDescInitEntry(tupdesc, (AttrNumber) 2, "schema",
                       TEXTOID, -1, 0);
    TupleDescInitEntry(tupdesc, (AttrNumber) 3, "name",
                       TEXTOID, -1, 0);
    TupleDescInitEntry(tupdesc, (AttrNumber) 4, "identity",
                       TEXTOID, -1, 0);
 
    tupdesc = BlessTupleDesc(tupdesc);
 
    if (is_objectclass_supported(address.classId)) {
        HeapTuple   objtup;
        Relation    catalog = heap_open(address.classId, AccessShareLock);
 
        objtup = get_catalog_object_by_oid(catalog, address.objectId);
        if (objtup != NULL) {
            bool        isnull;
            AttrNumber  nspAttnum;
            AttrNumber  nameAttnum;
 
            nspAttnum = get_object_attnum_namespace(address.classId);
            if (nspAttnum != InvalidAttrNumber) {
                schema_oid = heap_getattr(objtup, nspAttnum,
                                          RelationGetDescr(catalog), &isnull);
                if (isnull)
                    elog(ERROR, "invalid null namespace in object %u/%u/%d",
                         address.classId, address.objectId, address.objectSubId);
            }
 
            /*
             * We only return the object name if it can be used (together
             * with the schema name, if any) as an unique identifier.
             */
            if (get_object_namensp_unique(address.classId)) {
                nameAttnum = get_object_attnum_name(address.classId);
                if (nameAttnum != InvalidAttrNumber) {
                    Datum   nameDatum;
 
                    nameDatum = heap_getattr(objtup, nameAttnum,
                                             RelationGetDescr(catalog), &isnull);
                    if (isnull)
                        elog(ERROR, "invalid null name in object %u/%u/%d",
                             address.classId, address.objectId, address.objectSubId);
                    objname = quote_identifier(NameStr(*(DatumGetName(nameDatum))));
                }
            }
        }
 
        heap_close(catalog, AccessShareLock);
    }
 
    /* object type */
    values[0] = CStringGetTextDatum(getObjectTypeDescription(&address));
    nulls[0] = false;
 
    /* schema name */
    if (OidIsValid(schema_oid)) {
        const char  *schema = quote_identifier(get_namespace_name(schema_oid));
 
        values[1] = CStringGetTextDatum(schema);
        nulls[1] = false;
    }
    else
        nulls[1] = true;
 
    /* object name */
    if (objname) {
        values[2] = CStringGetTextDatum(objname);
        nulls[2] = false;
    }
    else
        nulls[2] = true;
 
    /* object identity */
    values[3] = CStringGetTextDatum(getObjectIdentity(&address));
    nulls[3] = false;
 
    htup = heap_form_tuple(tupdesc, values, nulls);
 
    PG_RETURN_DATUM(HeapTupleGetDatum(htup));
}

 /*
  * Find the ObjectAddress for an attribute's default value.
  */
static ObjectAddress
get_object_address_attrdef(ObjectType objtype, List *objname,
                           Relation *relp, LOCKMODE lockmode,
                           bool missing_ok)
{
    ObjectAddress address;
    List       *relname;
    Oid         reloid;
    Relation    relation;
    const char *attname;
    AttrNumber  attnum;
    TupleDesc   tupdesc;
    Oid         defoid;
 
    /* Extract relation name and open relation. */
    if (list_length(objname) < 2)
        ereport(ERROR,
                (errcode(ERRCODE_SYNTAX_ERROR),
                 errmsg("column name must be qualified")));
    attname = strVal(llast(objname));
    relname = list_truncate(list_copy(objname), list_length(objname) - 1);
    /* XXX no missing_ok support here */
    relation = relation_openrv(makeRangeVarFromNameList(relname), lockmode);
    reloid = RelationGetRelid(relation);
 
    tupdesc = RelationGetDescr(relation);
 
    /* Look up attribute number and scan pg_attrdef to find its tuple */
    attnum = get_attnum(reloid, attname);
    defoid = InvalidOid;
    if (attnum != InvalidAttrNumber && tupdesc->constr != NULL) {
        Relation    attrdef;
        ScanKeyData keys[2];
        SysScanDesc scan;
        HeapTuple   tup;
 
        attrdef = relation_open(AttrDefaultRelationId, AccessShareLock);
        ScanKeyInit(&keys[0],
                    Anum_pg_attrdef_adrelid,
                    BTEqualStrategyNumber,
                    F_OIDEQ,
                    ObjectIdGetDatum(reloid));
        ScanKeyInit(&keys[1],
                    Anum_pg_attrdef_adnum,
                    BTEqualStrategyNumber,
                    F_INT2EQ,
                    Int16GetDatum(attnum));
        scan = systable_beginscan(attrdef, AttrDefaultIndexId, true,
                                  NULL, 2, keys);
        if (HeapTupleIsValid(tup = systable_getnext(scan)))
            defoid = HeapTupleGetOid(tup);
 
        systable_endscan(scan);
        relation_close(attrdef, AccessShareLock);
    }
    if (!OidIsValid(defoid)) {
        if (!missing_ok)
            ereport(ERROR,
                    (errcode(ERRCODE_UNDEFINED_COLUMN),
                     errmsg("default value for column \"%s\" of relation \"%s\" does not exist",
                            attname, NameListToString(relname))));
 
        address.classId = AttrDefaultRelationId;
        address.objectId = InvalidOid;
        address.objectSubId = InvalidAttrNumber;
        relation_close(relation, lockmode);
        return address;
    }
 
    address.classId = AttrDefaultRelationId;
    address.objectId = defoid;
    address.objectSubId = 0;
 
    *relp = relation;
    return address;
}
 
 /*
  * Convert an array of TEXT into a List of string Values, as emitted by the
  * parser, which is what get_object_address uses as input.
  */
static List *
textarray_to_strvaluelist(ArrayType *arr)
{
    Datum  *elems;
    bool   *nulls;
    int     nelems;
    List   *list = NIL;
    int     i;
 
    deconstruct_array(arr, TEXTOID, -1, false, 'i',
                      &elems, &nulls, &nelems);
 
    for (i = 0; i < nelems; i++) {
        if (nulls[i])
            ereport(ERROR,
                    (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                     errmsg("name or argument lists may not contain nulls")));
        list = lappend(list, makeString(TextDatumGetCString(elems[i])));
    }
 
    return list;
}
 
 /*
  * SQL-callable version of get_object_address
  */
Datum
pg_get_object_address(PG_FUNCTION_ARGS)
{
    char   *ttype = TextDatumGetCString(PG_GETARG_TEXT_P(0));
    ArrayType *namearr = PG_GETARG_ARRAYTYPE_P(1);
    ArrayType *argsarr = PG_GETARG_ARRAYTYPE_P(2);
    int     itype;
    ObjectType type;
    List   *name;
    List   *args;
    ObjectAddress addr;
    TupleDesc tupdesc;
    Datum   values[3];
    bool    nulls[3];
    HeapTuple htup;
    Relation    relation;
 
    /* Decode object type, raise error if unknown */
    ttype = TextDatumGetCString(PG_GETARG_TEXT_P(0));
    itype = read_objtype_from_string(ttype);
    if (itype < 0)
        ereport(ERROR,
                (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                 errmsg("unsupported object type \"%s\"", ttype)));
    type = (ObjectType) itype;
 
    /*
     * Convert the text array to the representation appropriate for the
     * given object type.  Most use a simple string Values list, but there
     * are some exceptions.
     */
    if (type == OBJECT_TYPE || type == OBJECT_DOMAIN || type == OBJECT_CAST ||
        type == OBJECT_DOMCONSTRAINT) {
        Datum   *elems;
        bool    *nulls;
        int     nelems;
 
        deconstruct_array(namearr, TEXTOID, -1, false, 'i',
                          &elems, &nulls, &nelems);
        if (nelems != 1)
            ereport(ERROR,
                    (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                     errmsg("name list length must be exactly %d", 1)));
        if (nulls[0])
            ereport(ERROR,
                    (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                     errmsg("name or argument lists may not contain nulls")));
        name = list_make1(typeStringToTypeName(TextDatumGetCString(elems[0])));
    }
    else if (type == OBJECT_LARGEOBJECT) {
        Datum      *elems;
        bool       *nulls;
        int         nelems;
 
        deconstruct_array(namearr, TEXTOID, -1, false, 'i',
                          &elems, &nulls, &nelems);
        if (nelems != 1)
            ereport(ERROR,
                    (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                     errmsg("name list length must be exactly %d", 1)));
        if (nulls[0])
            ereport(ERROR,
                    (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                     errmsg("large object OID may not be null")));
        name = list_make1(makeFloat(TextDatumGetCString(elems[0])));
    }
    else {
        name = textarray_to_strvaluelist(namearr);
        if (list_length(name) < 1)
            ereport(ERROR,
                    (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                     errmsg("name list must be of length at least %d", 1)));
    }
 
    /*
     * If args are given, decode them according to the object type.
     */
    if (type == OBJECT_AGGREGATE ||
        type == OBJECT_FUNCTION ||
        type == OBJECT_OPERATOR ||
        type == OBJECT_CAST ||
        type == OBJECT_AMOP ||
        type == OBJECT_AMPROC) {
        /* in these cases, the args list must be of TypeName */
        Datum  *elems;
        bool   *nulls;
        int     nelems;
        int     i;
 
        deconstruct_array(argsarr, TEXTOID, -1, false, 'i',
                          &elems, &nulls, &nelems);
 
        args = NIL;
        for (i = 0; i < nelems; i++) {
            if (nulls[i])
                ereport(ERROR,
                        (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                         errmsg("name or argument lists may not contain nulls")));
            args = lappend(args,
                           typeStringToTypeName(TextDatumGetCString(elems[i])));
        }
        /*In gram.y,aggreate's args is a list of typeName list, make it consistent for get_object_address() */
        if(type == OBJECT_AGGREGATE)
            args = list_make1(args);
    }
    else {
        /* For all other object types, use string Values */
        args = textarray_to_strvaluelist(argsarr);
    }
 
    /*
     * get_object_name is pretty sensitive to the length its input lists;
     * check that they're what it wants.
     */
    switch (type) {
        case OBJECT_LARGEOBJECT:
            if (list_length(name) != 1)
                ereport(ERROR,
                        (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                         errmsg("name list length must be %d", 1)));
            break;
        case OBJECT_CAST:
        case OBJECT_USER_MAPPING:
        case OBJECT_PUBLICATION_REL:
            if (list_length(args) != 1)
                ereport(ERROR,
                        (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                         errmsg("argument list length must be exactly %d", 1)));
            break;
        case OBJECT_OPFAMILY:
        case OBJECT_OPCLASS:
            if (list_length(name) < 2)
                ereport(ERROR,
                        (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                         errmsg("name list length must be at least %d", 2)));
            break;
        case OBJECT_AMOP:
        case OBJECT_AMPROC:
            if (list_length(name) < 3)
                ereport(ERROR,
                        (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                         errmsg("name list length must be at least %d", 3)));
            /* fall through to check args length */
        case OBJECT_OPERATOR:
            if (list_length(args) != 2)
                ereport(ERROR,
                        (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                         errmsg("argument list length must be exactly %d", 2)));
            break;
        default:
            break;
    }
 
    addr = get_object_address(type, name, args,
                              &relation, AccessShareLock, false);
 
    /* We don't need the relcache entry, thank you very much */
    if (relation)
        relation_close(relation, AccessShareLock);
 
    tupdesc = CreateTemplateTupleDesc(3, false);
    TupleDescInitEntry(tupdesc, (AttrNumber) 1, "classid",
                       OIDOID, -1, 0);
    TupleDescInitEntry(tupdesc, (AttrNumber) 2, "objid",
                       OIDOID, -1, 0);
    TupleDescInitEntry(tupdesc, (AttrNumber) 3, "objsubid",
                       INT4OID, -1, 0);
    tupdesc = BlessTupleDesc(tupdesc);
 
    values[0] = ObjectIdGetDatum(addr.classId);
    values[1] = ObjectIdGetDatum(addr.objectId);
    values[2] = Int32GetDatum(addr.objectSubId);
    nulls[0] = false;
    nulls[1] = false;
    nulls[2] = false;
 
    htup = heap_form_tuple(tupdesc, values, nulls);
 
    PG_RETURN_DATUM(HeapTupleGetDatum(htup));
}

 /*
  * Return ObjectType for the given object type as given by
  * getObjectTypeDescription; if no valid ObjectType code exists, but it's a
  * possible output type from getObjectTypeDescription, return -1.
  * Otherwise, an error is thrown.
  */
int
read_objtype_from_string(const char *objtype)
{
    ObjectType  type;
    unsigned int  i;
 
    for (i = 0; i < lengthof(ObjectTypeMap); i++) {
        if (strcmp(ObjectTypeMap[i].tm_name, objtype) == 0) {
            type = ObjectTypeMap[i].tm_type;
            break;
        }
    }
    if (i >= lengthof(ObjectTypeMap))
        ereport(ERROR,
               (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                errmsg("unrecognized object type \"%s\"", objtype)));
 
    return type;
}
 
/*
 * Auxiliary function to build a TEXT array out of a list of C-strings.
 */
ArrayType *
strlist_to_textarray(List *list)
{
    ArrayType  *arr;
    Datum      *datums;
    bool       *nulls;
    int         j = 0;
    ListCell   *cell;
    MemoryContext memcxt;
    MemoryContext oldcxt;
    int         lb[1];

    /* Work in a temp context; easier than individually pfree'ing the Datums */
    memcxt = AllocSetContextCreate(CurrentMemoryContext,
                                  "strlist to array",
                                  ALLOCSET_DEFAULT_SIZES);
    oldcxt = MemoryContextSwitchTo(memcxt);

    datums = (Datum *) palloc(sizeof(Datum) * list_length(list));
    nulls = (bool *) palloc(sizeof(bool) * list_length(list));

    foreach(cell, list) {
        char       *name = (char*)lfirst(cell);

        if (name) {
            nulls[j] = false;
            datums[j++] = CStringGetTextDatum(name);
        }
        else
            nulls[j] = true;
    }

    MemoryContextSwitchTo(oldcxt);

    lb[0] = 1;
    arr = construct_md_array(datums, nulls, 1, &j,
                            lb, TEXTOID, -1, false, 'i');

    MemoryContextDelete(memcxt);

    return arr;
}

 /*
  * Find the ObjectAddress for a user mapping.
  */
static ObjectAddress
get_object_address_usermapping(List *objname, List *objargs, bool missing_ok)
{
    ObjectAddress address;
    Oid         userid;
    char       *username;
    char       *servername;
    ForeignServer *server;
    HeapTuple   tp;
 
    ObjectAddressSet(address, UserMappingRelationId, InvalidOid);
 
    /* fetch string names from input lists, for error messages */
    username = strVal(linitial(objname));
    servername = strVal(linitial(objargs));
 
    /* look up pg_authid OID of mapped user; InvalidOid if PUBLIC */
    if (strcmp(username, "public") == 0)
        userid = InvalidOid;
    else {
        tp = SearchSysCache1(AUTHNAME,
                             CStringGetDatum(username));
        if (!HeapTupleIsValid(tp)) {
            if (!missing_ok)
                ereport(ERROR,
                        (errcode(ERRCODE_UNDEFINED_OBJECT),
                         errmsg("user mapping for user \"%s\" in server \"%s\" does not exist",
                                username, servername)));
            return address;
        }
        userid = HeapTupleGetOid(tp);
        ReleaseSysCache(tp);
    }

    /* Now look up the pg_user_mapping tuple */
    server = GetForeignServerByName(servername, true);
    if (!server) {
        if (!missing_ok)
            ereport(ERROR,
                    (errcode(ERRCODE_UNDEFINED_OBJECT),
                     errmsg("server \"%s\" does not exist", servername)));
        return address;
    }
    tp = SearchSysCache2(USERMAPPINGUSERSERVER,
                         ObjectIdGetDatum(userid),
                         ObjectIdGetDatum(server->serverid));
    if (!HeapTupleIsValid(tp)) {
        if (!missing_ok)
            ereport(ERROR,
                    (errcode(ERRCODE_UNDEFINED_OBJECT),
                     errmsg("user mapping for user \"%s\" in server \"%s\" does not exist",
                            username, servername)));
        return address;
    }
 
    address.objectId = HeapTupleGetOid(tp);
 
    ReleaseSysCache(tp);
 
    return address;
}
 
Oid get_object_package(const ObjectAddress* address)
{
    const ObjectPropertyType* property = NULL;
    property = get_object_property_data(address->classId);
    if (property->attnum_namespace == InvalidAttrNumber) {
        return InvalidOid;
    }
    Relation dependRel;
    const int nKeys = 3;
    ScanKeyData key[nKeys];
    SysScanDesc scan = NULL;
    HeapTuple tuple = NULL;
    bool isNull = true;
    Oid pkgOid = InvalidOid;
    int keyNum = 0;
    dependRel = heap_open(DependRelationId, AccessShareLock);
    ScanKeyInit(&key[keyNum++], Anum_pg_depend_classid, BTEqualStrategyNumber, F_OIDEQ, ObjectIdGetDatum(address->classId));
    ScanKeyInit(&key[keyNum++], Anum_pg_depend_objid, BTEqualStrategyNumber, F_OIDEQ, ObjectIdGetDatum(address->objectId));
    ScanKeyInit(&key[keyNum++], Anum_pg_depend_objsubid, BTEqualStrategyNumber, F_OIDEQ, ObjectIdGetDatum(address->objectSubId));
    scan = systable_beginscan(dependRel, DependDependerIndexId, true, NULL, nKeys, key);
    ObjectAddress procObjAddr;
    procObjAddr.classId = InvalidOid;
    while (HeapTupleIsValid(tuple = systable_getnext(scan))) {
        Datum objOidDatum = heap_getattr(tuple, Anum_pg_depend_refobjid,
                                   RelationGetDescr(dependRel), &isNull);
        Assert(!isNull);
        Datum classOidDatum = heap_getattr(tuple, Anum_pg_depend_refclassid,
                                         RelationGetDescr(dependRel), &isNull);
        Assert(!isNull);
        if (classOidDatum == ProcedureRelationId) {
            procObjAddr.classId = ProcedureRelationId;
            procObjAddr.objectId = DatumGetObjectId(objOidDatum);
            procObjAddr.objectSubId = 0;
            break;
        }
        if (classOidDatum != PackageRelationId) {
            continue;
        }
        pkgOid = DatumGetObjectId(objOidDatum);
        break;
    }
    systable_endscan(scan);
    heap_close(dependRel, AccessShareLock);
    if (OidIsValid(procObjAddr.classId)) {
        pkgOid = get_object_package(&procObjAddr);
    }
    return pkgOid;
}