You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by Ashish Singh <as...@cloudera.com> on 2014/07/03 03:07:57 UTC

Review Request 23253: HIVE-7340: Beeline fails to read a query with comments correctly

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/23253/
-----------------------------------------------------------

Review request for hive.


Repository: hive-git


Description
-------

HIVE-7340: Beeline fails to read a query with comments correctly


Diffs
-----

  beeline/src/java/org/apache/hive/beeline/Commands.java 88a94d76a3750dcde31ff47913bf28b827b3b212 
  itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java 140c1bccedb9ef3c81e89026db44ce4b59150ef4 

Diff: https://reviews.apache.org/r/23253/diff/


Testing
-------

Added unit tests.


Thanks,

Ashish Singh


Re: Review Request 23253: HIVE-7340: Beeline fails to read a query with comments correctly

Posted by Ashish Singh <as...@cloudera.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/23253/
-----------------------------------------------------------

(Updated July 14, 2014, 10:29 p.m.)


Review request for hive.


Changes
-------

Addressed review comments


Bugs: HIVE-7340
    https://issues.apache.org/jira/browse/HIVE-7340


Repository: hive-git


Description
-------

HIVE-7340: Beeline fails to read a query with comments correctly


Diffs (updated)
-----

  beeline/src/java/org/apache/hive/beeline/Commands.java 88a94d76a3750dcde31ff47913bf28b827b3b212 
  itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java 140c1bccedb9ef3c81e89026db44ce4b59150ef4 

Diff: https://reviews.apache.org/r/23253/diff/


Testing
-------

Added unit tests.


Thanks,

Ashish Singh


Re: Review Request 23253: HIVE-7340: Beeline fails to read a query with comments correctly

Posted by Deepesh Khandelwal <de...@hotmail.com>.

> On July 9, 2014, 12:39 a.m., Deepesh Khandelwal wrote:
> > According to the sqlline doc on which beeline is based, it only mentions "Lines beginning with "#" are interpreted as comments and ignored". Interpreting inline "#" as comments will restrict us from writing queries which have "#" appearing in the query body.
> 
> Ashish Singh wrote:
>     Deepesh, I agree with you on '#', but we should still let '--' identify inline comments. SQL92 also supports inline comments with '--'. Let me know if you think otherwise.

Yes, my concern was only for the inline '#', I am fine with supporting the following comment variants:
- Inline '--'
- Lines beginning with '--'
- Lines beginning with '#'


- Deepesh


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/23253/#review47481
-----------------------------------------------------------


On July 4, 2014, 1 a.m., Ashish Singh wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/23253/
> -----------------------------------------------------------
> 
> (Updated July 4, 2014, 1 a.m.)
> 
> 
> Review request for hive.
> 
> 
> Bugs: HIVE-7340
>     https://issues.apache.org/jira/browse/HIVE-7340
> 
> 
> Repository: hive-git
> 
> 
> Description
> -------
> 
> HIVE-7340: Beeline fails to read a query with comments correctly
> 
> 
> Diffs
> -----
> 
>   beeline/src/java/org/apache/hive/beeline/Commands.java 88a94d76a3750dcde31ff47913bf28b827b3b212 
>   itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java 140c1bccedb9ef3c81e89026db44ce4b59150ef4 
> 
> Diff: https://reviews.apache.org/r/23253/diff/
> 
> 
> Testing
> -------
> 
> Added unit tests.
> 
> 
> Thanks,
> 
> Ashish Singh
> 
>


Re: Review Request 23253: HIVE-7340: Beeline fails to read a query with comments correctly

Posted by Ashish Singh <as...@cloudera.com>.

> On July 9, 2014, 12:39 a.m., Deepesh Khandelwal wrote:
> > According to the sqlline doc on which beeline is based, it only mentions "Lines beginning with "#" are interpreted as comments and ignored". Interpreting inline "#" as comments will restrict us from writing queries which have "#" appearing in the query body.

Deepesh, I agree with you on '#', but we should still let '--' identify inline comments. SQL92 also supports inline comments with '--'. Let me know if you think otherwise.


- Ashish


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/23253/#review47481
-----------------------------------------------------------


On July 4, 2014, 1 a.m., Ashish Singh wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/23253/
> -----------------------------------------------------------
> 
> (Updated July 4, 2014, 1 a.m.)
> 
> 
> Review request for hive.
> 
> 
> Bugs: HIVE-7340
>     https://issues.apache.org/jira/browse/HIVE-7340
> 
> 
> Repository: hive-git
> 
> 
> Description
> -------
> 
> HIVE-7340: Beeline fails to read a query with comments correctly
> 
> 
> Diffs
> -----
> 
>   beeline/src/java/org/apache/hive/beeline/Commands.java 88a94d76a3750dcde31ff47913bf28b827b3b212 
>   itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java 140c1bccedb9ef3c81e89026db44ce4b59150ef4 
> 
> Diff: https://reviews.apache.org/r/23253/diff/
> 
> 
> Testing
> -------
> 
> Added unit tests.
> 
> 
> Thanks,
> 
> Ashish Singh
> 
>


Re: Review Request 23253: HIVE-7340: Beeline fails to read a query with comments correctly

Posted by Ashish Singh <as...@cloudera.com>.

> On July 9, 2014, 12:39 a.m., Deepesh Khandelwal wrote:
> > According to the sqlline doc on which beeline is based, it only mentions "Lines beginning with "#" are interpreted as comments and ignored". Interpreting inline "#" as comments will restrict us from writing queries which have "#" appearing in the query body.
> 
> Ashish Singh wrote:
>     Deepesh, I agree with you on '#', but we should still let '--' identify inline comments. SQL92 also supports inline comments with '--'. Let me know if you think otherwise.
> 
> Deepesh Khandelwal wrote:
>     Yes, my concern was only for the inline '#', I am fine with supporting the following comment variants:
>     - Inline '--'
>     - Lines beginning with '--'
>     - Lines beginning with '#'

Addressed.


- Ashish


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/23253/#review47481
-----------------------------------------------------------


On July 14, 2014, 10:29 p.m., Ashish Singh wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/23253/
> -----------------------------------------------------------
> 
> (Updated July 14, 2014, 10:29 p.m.)
> 
> 
> Review request for hive.
> 
> 
> Bugs: HIVE-7340
>     https://issues.apache.org/jira/browse/HIVE-7340
> 
> 
> Repository: hive-git
> 
> 
> Description
> -------
> 
> HIVE-7340: Beeline fails to read a query with comments correctly
> 
> 
> Diffs
> -----
> 
>   beeline/src/java/org/apache/hive/beeline/Commands.java 88a94d76a3750dcde31ff47913bf28b827b3b212 
>   itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java 140c1bccedb9ef3c81e89026db44ce4b59150ef4 
> 
> Diff: https://reviews.apache.org/r/23253/diff/
> 
> 
> Testing
> -------
> 
> Added unit tests.
> 
> 
> Thanks,
> 
> Ashish Singh
> 
>


Re: Review Request 23253: HIVE-7340: Beeline fails to read a query with comments correctly

Posted by Deepesh Khandelwal <de...@hotmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/23253/#review47481
-----------------------------------------------------------


According to the sqlline doc on which beeline is based, it only mentions "Lines beginning with "#" are interpreted as comments and ignored". Interpreting inline "#" as comments will restrict us from writing queries which have "#" appearing in the query body.

- Deepesh Khandelwal


On July 4, 2014, 1 a.m., Ashish Singh wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/23253/
> -----------------------------------------------------------
> 
> (Updated July 4, 2014, 1 a.m.)
> 
> 
> Review request for hive.
> 
> 
> Bugs: HIVE-7340
>     https://issues.apache.org/jira/browse/HIVE-7340
> 
> 
> Repository: hive-git
> 
> 
> Description
> -------
> 
> HIVE-7340: Beeline fails to read a query with comments correctly
> 
> 
> Diffs
> -----
> 
>   beeline/src/java/org/apache/hive/beeline/Commands.java 88a94d76a3750dcde31ff47913bf28b827b3b212 
>   itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java 140c1bccedb9ef3c81e89026db44ce4b59150ef4 
> 
> Diff: https://reviews.apache.org/r/23253/diff/
> 
> 
> Testing
> -------
> 
> Added unit tests.
> 
> 
> Thanks,
> 
> Ashish Singh
> 
>


Re: Review Request 23253: HIVE-7340: Beeline fails to read a query with comments correctly

Posted by Ashish Singh <as...@cloudera.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/23253/
-----------------------------------------------------------

(Updated July 4, 2014, 1 a.m.)


Review request for hive.


Changes
-------

Attaching bug id.


Bugs: HIVE-7340
    https://issues.apache.org/jira/browse/HIVE-7340


Repository: hive-git


Description
-------

HIVE-7340: Beeline fails to read a query with comments correctly


Diffs
-----

  beeline/src/java/org/apache/hive/beeline/Commands.java 88a94d76a3750dcde31ff47913bf28b827b3b212 
  itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java 140c1bccedb9ef3c81e89026db44ce4b59150ef4 

Diff: https://reviews.apache.org/r/23253/diff/


Testing
-------

Added unit tests.


Thanks,

Ashish Singh