You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Vihang Karajgaonkar (JIRA)" <ji...@apache.org> on 2017/07/27 17:10:00 UTC

[jira] [Created] (HIVE-17184) Unexpected new line in beeline when running with -f option

Vihang Karajgaonkar created HIVE-17184:
------------------------------------------

             Summary: Unexpected new line in beeline when running with -f option
                 Key: HIVE-17184
                 URL: https://issues.apache.org/jira/browse/HIVE-17184
             Project: Hive
          Issue Type: Bug
          Components: Beeline
            Reporter: Vihang Karajgaonkar
            Assignee: Vihang Karajgaonkar
            Priority: Minor


When running in -f mode on BeeLine I see an extra new line getting added at the end of the results.

{noformat}
vihang-MBP:bin vihang$ beeline -f /tmp/query.sql 2>/dev/null
+----------+-----------+
| test.id  | test.val  |
+----------+-----------+
| 1        | one       |
| 2        | two       |
| 1        | three     |
+----------+-----------+

vihang-MBP:bin vihang$ beeline -e "select * from test;" 2>/dev/null
+----------+-----------+
| test.id  | test.val  |
+----------+-----------+
| 1        | one       |
| 2        | two       |
| 1        | three     |
+----------+-----------+
vihang-MBP:bin vihang$
{noformat}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)