You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Xuefu Zhang (JIRA)" <ji...@apache.org> on 2014/03/20 21:19:46 UTC

[jira] [Created] (HIVE-6712) HS2 JDBC driver is inconsistent w.r.t. auto commit

Xuefu Zhang created HIVE-6712:
---------------------------------

             Summary: HS2 JDBC driver is inconsistent w.r.t. auto commit
                 Key: HIVE-6712
                 URL: https://issues.apache.org/jira/browse/HIVE-6712
             Project: Hive
          Issue Type: Bug
    Affects Versions: 0.13.0
            Reporter: Xuefu Zhang


I see an inconsistency in HS2 JDBC driver code:
{code}
  @Override
  public void setAutoCommit(boolean autoCommit) throws SQLException {
    if (autoCommit) {
      throw new SQLException("enabling autocommit is not supported");
    }
  }
{code}
>From above, it seems that auto commit is not supported. However, 
{code}
  @Override
  public boolean getAutoCommit() throws SQLException {
    return true;
  }
{code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)