You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2020/10/17 06:31:00 UTC

[jira] [Work logged] (HIVE-24282) Show columns shouldn't sort table output columns unless explicitly mentioned.

     [ https://issues.apache.org/jira/browse/HIVE-24282?focusedWorklogId=501738&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-501738 ]

ASF GitHub Bot logged work on HIVE-24282:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 17/Oct/20 06:30
            Start Date: 17/Oct/20 06:30
    Worklog Time Spent: 10m 
      Work Description: nareshpr opened a new pull request #1584:
URL: https://github.com/apache/hive/pull/1584


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 501738)
    Remaining Estimate: 0h
            Time Spent: 10m

> Show columns shouldn't sort table output columns unless explicitly mentioned.
> -----------------------------------------------------------------------------
>
>                 Key: HIVE-24282
>                 URL: https://issues.apache.org/jira/browse/HIVE-24282
>             Project: Hive
>          Issue Type: Improvement
>            Reporter: Naresh P R
>            Assignee: Naresh P R
>            Priority: Major
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> CREATE TABLE foo_n7(c INT, a INT, b INT);
> show columns in foo_n7;
> {code:java}
> // current output
> a
> b 
> c
> // expected
> c
> a 
> b{code}
> HIVE-18373 changed the original behaviour to sorted output.
> Suggesting to provide an optional keyword sorted to sort the show columns output
> eg., 
> {code:java}
> show sorted columns in foo_n7;
> a
> b 
> c
> show columns in foo_n7
> c
> a 
> b{code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)