[ https://issues.apache.org/jira/browse/HIVE-6705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14118097#comment-14118097 ]
Hive QA commented on HIVE-6705: ------------------------------- {color:green}Overall{color}: +1 all checks pass Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12665860/HIVE-6705.1.patch.txt {color:green}SUCCESS:{color} +1 6134 tests passed Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/600/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/600/console Test logs: http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-600/ Messages: {noformat} Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase {noformat} This message is automatically generated. ATTACHMENT ID: 12665860 > hive jdbc can not used by jmeter, because of unsupported auto commit feature > ---------------------------------------------------------------------------- > > Key: HIVE-6705 > URL: https://issues.apache.org/jira/browse/HIVE-6705 > Project: Hive > Issue Type: Bug > Components: JDBC > Affects Versions: 0.12.0 > Environment: CentOS_X86_64 > JMeter 2.11 > Reporter: Ben > Attachments: HIVE-6705.1.patch.txt > > > In apache jmeter ,the autocommit property is required. > but in the hive jdbc the auto commit is unsupported method. > in > /jdbc/src/java/org/apache/hadoop/hive/jdbc/HiveConnection.java > {quote} > public void setAutoCommit(boolean autoCommit) throws SQLException { > // TODO Auto-generated method stub > throw new {color:red} SQLException("Method not supported"); > {color} > } > {quote} > so ,should we make a mock to support the auto commit property == false ? > {quote} > public void setAutoCommit(boolean autoCommit) throws SQLException { > // TODO Auto-generated method stub > {color:red}if(autoCommit) {color} > throw new SQLException("Method not supported"); > else > return; > } > {quote} -- This message was sent by Atlassian JIRA (v6.3.4#6332)