Hello Abhishek Rawat, Impala Public Jenkins, I'd like you to reexamine a change. Please visit
http://gerrit.cloudera.org:8080/18580 to look at the new patch set (#3). Change subject: IMPALA-11332: Fix trailing whitespace for CSV output ...................................................................... IMPALA-11332: Fix trailing whitespace for CSV output The current CSV output is stripping trailing whitespaces from the last line of CSV output. This rstrip() was intended to remove an extra newline, but it is matching other white space. This is a problem for a SQL query like: select 'Trailing whitespace '; This changes the rstrip() to rstrip('\n') to avoid removing the other white space. Testing: - Current shell tests pass - Added a shell test that verifies trailing whitespace is not being stripped. Change-Id: I69d032ca2f581587b0938d0878fdf402fee0d57e --- M shell/shell_output.py M tests/shell/test_shell_commandline.py 2 files changed, 18 insertions(+), 1 deletion(-) git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/80/18580/3 -- To view, visit http://gerrit.cloudera.org:8080/18580 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-MessageType: newpatchset Gerrit-Change-Id: I69d032ca2f581587b0938d0878fdf402fee0d57e Gerrit-Change-Number: 18580 Gerrit-PatchSet: 3 Gerrit-Owner: Joe McDonnell <joemcdonn...@cloudera.com> Gerrit-Reviewer: Abhishek Rawat <ara...@cloudera.com> Gerrit-Reviewer: Impala Public Jenkins <impala-public-jenk...@cloudera.com> Gerrit-Reviewer: Joe McDonnell <joemcdonn...@cloudera.com>