[
https://issues.apache.org/jira/browse/HIVE-8544?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14180125#comment-14180125
]
Hive QA commented on HIVE-8544:
-------------------------------
{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/12676282/HIVE-8544.1.patch
{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 6574 tests executed
*Failed tests:*
{noformat}
org.apache.hive.minikdc.TestJdbcWithMiniKdc.testNegativeTokenAuth
{noformat}
Test results:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/1394/testReport
Console output:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/1394/console
Test logs:
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-1394/
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: 1 tests failed
{noformat}
This message is automatically generated.
ATTACHMENT ID: 12676282 - PreCommit-HIVE-TRUNK-Build
> Beeline SeparatedValuesOutputFormat (csv/tsv/dsv) wraps the results with
> extra double quotes
> ----------------------------------------------------------------------------------------------
>
> Key: HIVE-8544
> URL: https://issues.apache.org/jira/browse/HIVE-8544
> Project: Hive
> Issue Type: Bug
> Components: CLI, JDBC
> Affects Versions: 0.14.0
> Reporter: Vaibhav Gumashta
> Assignee: Vaibhav Gumashta
> Fix For: 0.14.0
>
> Attachments: HIVE-8544.1.patch
>
>
> Noticed additional double quotes in select * <complex datatypes> output
> while running it through HiveServer2/Beeline
> Actual
> {noformat}
> [18,19] "{""col1"":""alice brown"",""col2"":18}" "{""alice
> brown"":18}"
> [18,19] "{""col1"":""alice garcia"",""col2"":18}" "{""alice
> garcia"":18}"
> [18,19] "{""col1"":""alice garcia"",""col2"":18}" "{""alice
> garcia"":18}"
> [18,19] "{""col1"":""alice thompson"",""col2"":18}" "{""alice
> thompson"":18}"
> [18,19] "{""col1"":""alice xylophone"",""col2"":18}" "{""alice
> xylophone"":18}"
> [18,19] "{""col1"":""bob hernandez"",""col2"":18}" "{""bob
> hernandez"":18}"
> [18,19] "{""col1"":""bob ichabod"",""col2"":18}" "{""bob
> ichabod"":18}"
> {noformat}
> Expected
> {noformat}
> [18,19] {"col1":"alice brown","col2":18} {"alice brown":18}
> [18,19] {"col1":"alice garcia","col2":18} {"alice garcia":18}
> [18,19] {"col1":"alice garcia","col2":18} {"alice garcia":18}
> [18,19] {"col1":"alice thompson","col2":18} {"alice thompson":18}
> [18,19] {"col1":"alice xylophone","col2":18} {"alice xylophone":18}
> [18,19] {"col1":"bob hernandez","col2":18} {"bob hernandez":18}
> [18,19] {"col1":"bob ichabod","col2":18} {"bob ichabod":18}
> {noformat}
> Run these queries through HiveServer2 to reproduce the issue:
> {noformat}
> create table insert_9 (a array<int>, b struct<col1:string,col2:int>, c
> map<string, int>);
> insert overwrite table insert_9 select array(age, age+1), struct(name, age),
> map(name, age) from studenttab10k;
> select * from insert_9;
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)