You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Eugene Koifman (JIRA)" <ji...@apache.org> on 2017/09/30 01:26:00 UTC

[jira] [Created] (HIVE-17661) DBTxnManager.acquireLocks() - MM tables should use shared lock for Insert

Eugene Koifman created HIVE-17661:
-------------------------------------

             Summary: DBTxnManager.acquireLocks() - MM tables should use shared lock for Insert
                 Key: HIVE-17661
                 URL: https://issues.apache.org/jira/browse/HIVE-17661
             Project: Hive
          Issue Type: Sub-task
          Components: Transactions
            Reporter: Eugene Koifman


{noformat}
        case INSERT:
          assert t != null;
          if(AcidUtils.isFullAcidTable(t)) {
            compBuilder.setShared();
          }
          else {
            if (conf.getBoolVar(HiveConf.ConfVars.HIVE_TXN_STRICT_LOCKING_MODE)) {
{noformat}
_if(AcidUtils.isFullAcidTable(t)) {_ 
should probably be 
_if(AcidUtils.isAcidTable(t)) {_



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)