[ https://issues.apache.org/jira/browse/HIVE-22433?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16963554#comment-16963554 ]
Hive QA commented on HIVE-22433: -------------------------------- Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12984338/HIVE-22433.01.patch {color:red}ERROR:{color} -1 due to no test(s) being added or modified. {color:red}ERROR:{color} -1 due to 3 failed/errored test(s), 17540 tests executed *Failed tests:* {noformat} TestMiniTezCliDriver - did not produce a TEST-*.xml file (likely timed out) (batchId=112) [explainanalyze_4.q,update_orig_table.q,acid_vectorization_original_tez.q,orc_merge12.q,explainuser_3.q,tez_union_with_udf.q] org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[external_jdbc_table_partition] (batchId=186) org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[external_jdbc_table_typeconversion] (batchId=161) {noformat} Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/19218/testReport Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/19218/console Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-19218/ Messages: {noformat} Executing org.apache.hive.ptest.execution.TestCheckPhase Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.YetusPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase Tests exited with: TestsFailedException: 3 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12984338 - PreCommit-HIVE-Build > Hive JDBC Storage Handler: Incorrect results fetched from BOOLEAN and > TIMESTAMP DataType From JDBC Data Source > -------------------------------------------------------------------------------------------------------------- > > Key: HIVE-22433 > URL: https://issues.apache.org/jira/browse/HIVE-22433 > Project: Hive > Issue Type: Bug > Components: StorageHandler > Reporter: Syed Shameerur Rahman > Assignee: Syed Shameerur Rahman > Priority: Major > Labels: pull-request-available > Attachments: HIVE-22433.01.patch > > > Steps to Reproduce: > {code:java} > //Derby table: > create table testtbl(a BOOLEAN, b TIMESTAMP); > // Insert to table via mysql connector > // data in db > true 2019-11-11 12:00:00 > //Hive table: > CREATE EXTERNAL TABLE `hive_table`( > a BOOLEAN, b TIMESTAMP > ) > STORED BY > 'org.apache.hive.storage.jdbc.JdbcStorageHandler' > TBLPROPERTIES ( > > 'hive.sql.database.type'='DERBY', > 'hive.sql.dbcp.password'='', > 'hive.sql.dbcp.username'='', > 'hive.sql.jdbc.driver'='', > 'hive.sql.jdbc.url'='', > 'hive.sql.table'='testtbl'); > //Hive query: > select * from hive_table; > // result from select query > false 2019-11-11 20:00:00 > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005)