You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "niklaus xiao (JIRA)" <ji...@apache.org> on 2016/07/20 11:43:20 UTC

[jira] [Created] (HIVE-14295) Some metastore event listeners always initialize deleteData as false

niklaus xiao created HIVE-14295:
-----------------------------------

             Summary: Some metastore event listeners always initialize deleteData as false
                 Key: HIVE-14295
                 URL: https://issues.apache.org/jira/browse/HIVE-14295
             Project: Hive
          Issue Type: Bug
          Components: Metastore
    Affects Versions: 2.1.0, 1.3.0
            Reporter: niklaus xiao
            Assignee: niklaus xiao
            Priority: Minor


DropTableEvent:
{code}
  public DropTableEvent(Table table, boolean status, boolean deleteData, HMSHandler handler) {
    super(status, handler);
    this.table = table;
    // In HiveMetaStore, the deleteData flag indicates whether DFS data should be
    // removed on a drop.
    this.deleteData = false;
  }
{code}

Same as PreDropPartitionEvent and PreDropTableEvent



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)