-
Type:
Improvement
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 4.0.0
-
Component/s: None
-
Labels:
CREATE TABLE foo_n7(c INT, a INT, b INT);
show columns in foo_n7;
// current output a b c // expected c a b
HIVE-18373 changed the original behaviour to sorted output.
Suggesting to provide an optional keyword sorted to sort the show columns output
eg.,
show sorted columns in foo_n7; a b c show columns in foo_n7 c a b
- links to