[ https://issues.apache.org/jira/browse/HIVE-11340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14663253#comment-14663253 ]
Hive QA commented on HIVE-11340: -------------------------------- {color:red}Overall{color}: -1 at least one tests failed Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12749326/HIVE-11340.2.patch {color:red}ERROR:{color} -1 due to 7 failed/errored test(s), 9344 tests executed *Failed tests:* {noformat} org.apache.hive.spark.client.TestSparkClient.testAddJarsAndFiles org.apache.hive.spark.client.TestSparkClient.testCounters org.apache.hive.spark.client.TestSparkClient.testErrorJob org.apache.hive.spark.client.TestSparkClient.testJobSubmission org.apache.hive.spark.client.TestSparkClient.testMetricsCollection org.apache.hive.spark.client.TestSparkClient.testSimpleSparkJob org.apache.hive.spark.client.TestSparkClient.testSyncRpc {noformat} Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/4881/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/4881/console Test logs: http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-4881/ Messages: {noformat} Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase Tests exited with: TestsFailedException: 7 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12749326 - PreCommit-HIVE-TRUNK-Build > Create ORC based table using like clause doesn't copy compression property > -------------------------------------------------------------------------- > > Key: HIVE-11340 > URL: https://issues.apache.org/jira/browse/HIVE-11340 > Project: Hive > Issue Type: Bug > Components: File Formats > Affects Versions: 0.14.0, 1.0.0, 1.2.0 > Reporter: Gaurav Kohli > Assignee: Yongzhi Chen > Priority: Minor > Attachments: HIVE-11340.1.patch, HIVE-11340.2.patch > > > I found a issue in “create table like” clause, as it is not copying the table > properties from ORC File format based table. > Steps to reproduce: > Step1 : > {code} > create table orc_table ( > time string) > stored as ORC tblproperties ("orc.compress"="SNAPPY"); > {code} > Step 2: > {code} > create table orc_table_using_like like orc_table; > {code} > Step 3: > {code} > show create table orc_table_using_like; > {code} > Result: > {code} > createtab_stmt > CREATE TABLE `orc_table_using_like`( > `time` string) > ROW FORMAT SERDE > 'org.apache.hadoop.hive.ql.io.orc.OrcSerde' > STORED AS INPUTFORMAT > 'org.apache.hadoop.hive.ql.io.orc.OrcInputFormat' > OUTPUTFORMAT > 'org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat' > LOCATION > 'hdfs://nameservice1/user/hive/warehouse/gkohli.db/orc_table_using_like' > TBLPROPERTIES ( > 'transient_lastDdlTime'='1437578939') > {code} > Issue: 'orc.compress'='SNAPPY' property is missing -- This message was sent by Atlassian JIRA (v6.3.4#6332)