You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Thejas M Nair (JIRA)" <ji...@apache.org> on 2015/11/02 23:07:27 UTC

[jira] [Commented] (HIVE-11293) HiveConnection.setAutoCommit(true) throws exception

    [ https://issues.apache.org/jira/browse/HIVE-11293?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14986148#comment-14986148 ] 

Thejas M Nair commented on HIVE-11293:
--------------------------------------

+1

> HiveConnection.setAutoCommit(true) throws exception
> ---------------------------------------------------
>
>                 Key: HIVE-11293
>                 URL: https://issues.apache.org/jira/browse/HIVE-11293
>             Project: Hive
>          Issue Type: Bug
>          Components: JDBC
>    Affects Versions: 2.0.0
>            Reporter: Andriy Shumylo
>            Assignee: Michał Węgrzyn
>            Priority: Minor
>         Attachments: HIVE-11293.2.patch, HIVE-11293.patch
>
>
> Effectively autoCommit is always true for HiveConnection, however setAutoCommit(true) throws exception, causing problems in existing JDBC code.
> Should be 
> {code}
>   @Override
>   public void setAutoCommit(boolean autoCommit) throws SQLException {
>     if (!autoCommit) {
>       throw new SQLException("disabling autocommit is not supported");
>     }
>   }
> {code}



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