You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Navis (JIRA)" <ji...@apache.org> on 2013/10/21 11:00:54 UTC

[jira] [Updated] (HIVE-5598) Remove dummy new line at the end of non-sql commands

     [ https://issues.apache.org/jira/browse/HIVE-5598?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Navis updated HIVE-5598:
------------------------

    Attachment: HIVE-5598.1.patch.txt

Making diff file..

> Remove dummy new line at the end of non-sql commands
> ----------------------------------------------------
>
>                 Key: HIVE-5598
>                 URL: https://issues.apache.org/jira/browse/HIVE-5598
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Navis
>            Assignee: Navis
>            Priority: Trivial
>         Attachments: HIVE-5598.1.patch.txt
>
>
> In Driver.java
> {noformat}
> ss = Utilities.readColumn(resStream, bos);
> if (bos.getCount() > 0) {
>   row = new String(bos.getData(), 0, bos.getCount(), "UTF-8");
> } else if (ss == Utilities.StreamStatus.TERMINATED) {
>   row = new String();
> }
> if (row != null) {
>   numRows++;
>   res.add(row);
> }
> {noformat}
> last line would be added once more after EOF.



--
This message was sent by Atlassian JIRA
(v6.1#6144)