[ https://issues.apache.org/jira/browse/HIVE-7419?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14066193#comment-14066193 ]
Hive QA commented on HIVE-7419: ------------------------------- {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/12656442/HIVE-7419.1.patch.txt {color:red}ERROR:{color} -1 due to 2 failed/errored test(s), 5740 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_dynpart_sort_optimization org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_ql_rewrite_gbtoidx {noformat} Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-Build/848/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-Build/848/console Test logs: http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-Build-848/ 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: 2 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12656442 > Missing break in SemanticAnalyzer#getTableDescFromSerDe() > --------------------------------------------------------- > > Key: HIVE-7419 > URL: https://issues.apache.org/jira/browse/HIVE-7419 > Project: Hive > Issue Type: Bug > Reporter: Ted Yu > Priority: Minor > Attachments: HIVE-7419.1.patch.txt > > > {code} > case HiveParser.TOK_TABLEROWFORMATLINES: > String lineDelim = > unescapeSQLString(rowChild.getChild(0).getText()); > tblDesc.getProperties().setProperty(serdeConstants.LINE_DELIM, > lineDelim); > if (!lineDelim.equals("\n") && !lineDelim.equals("10")) { > throw new SemanticException(generateErrorMessage(rowChild, > ErrorMsg.LINES_TERMINATED_BY_NON_NEWLINE.getMsg())); > } > case HiveParser.TOK_TABLEROWFORMATNULL: > String nullFormat = > unescapeSQLString(rowChild.getChild(0).getText()); > {code} > break seems to be missing for TOK_TABLEROWFORMATLINES case. -- This message was sent by Atlassian JIRA (v6.2#6252)