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 2018/05/01 17:15:00 UTC

[jira] [Created] (HIVE-19375) "'transactional'='false' is no longer a valid property and will be ignored:

Eugene Koifman created HIVE-19375:
-------------------------------------

             Summary: "'transactional'='false' is no longer a valid property and will be ignored: 
                 Key: HIVE-19375
                 URL: https://issues.apache.org/jira/browse/HIVE-19375
             Project: Hive
          Issue Type: Bug
          Components: Transactions
            Reporter: Eugene Koifman
            Assignee: Eugene Koifman


from {{TransactionalValidationListener.handleCreateTableTransactionalProp()}}

{noformat}
    if ("false".equalsIgnoreCase(transactional)) {
      // just drop transactional=false.  For backward compatibility in case someone has scripts
      // with transactional=false
      LOG.info("'transactional'='false' is no longer a valid property and will be ignored: " +
        Warehouse.getQualifiedName(newTable));
      return;
    }
{noformat}

this msg is misleading since with metastore.create.as.acid=true, setting transactional=false is valid to make a flat table



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