Apache.Hadoop.Hive.ThriftHiveMetastore.Client.grant_role C# (CSharp) Method

grant_role() public method

public grant_role ( string role_name, string principal_name, PrincipalType principal_type, string grantor, PrincipalType grantorType, bool grant_option ) : bool
role_name string
principal_name string
principal_type PrincipalType
grantor string
grantorType PrincipalType
grant_option bool
return bool
            public bool grant_role(string role_name, string principal_name, PrincipalType principal_type, string grantor, PrincipalType grantorType, bool grant_option)
            {
                send_grant_role(role_name, principal_name, principal_type, grantor, grantorType, grant_option);
                return recv_grant_role();
            }
ThriftHiveMetastore.Client