You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Vihang Karajgaonkar (JIRA)" <ji...@apache.org> on 2018/11/14 19:34:00 UTC

[jira] [Created] (HIVE-20916) Fix typo in JSONCreateDatabaseMessage

Vihang Karajgaonkar created HIVE-20916:
------------------------------------------

             Summary: Fix typo in JSONCreateDatabaseMessage
                 Key: HIVE-20916
                 URL: https://issues.apache.org/jira/browse/HIVE-20916
             Project: Hive
          Issue Type: Bug
          Components: Standalone Metastore
    Affects Versions: 4.0.0
            Reporter: Vihang Karajgaonkar


{code}
public JSONCreateDatabaseMessage(String server, String servicePrincipal, Database db,
      Long timestamp) {
    this.server = server;
    this.servicePrincipal = servicePrincipal;
    this.db = db.getName();
    this.timestamp = timestamp;
    try {
      this.dbJson = MessageBuilder.createDatabaseObjJson(db);
    } catch (TException ex) {
      throw new IllegalArgumentException("Could not serialize Function object", ex);
    }
    checkValid();
  }
{code}

The exception message should say Database instead of Function. Also, the {{TestDbNotificationListener#createDatabase}} should be modified to make sure that the deserialized database object from the dbJson field matches with the original database object 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)