Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Impala 2.10.0
-
None
-
ghx-label-8
Description
Looking at this page:
https://impala.apache.org/docs/build/html/topics/impala_create_view.html#create_view
It appears we do not have an example for the "columns_list" that shows adding a comment to a column. We should add that.
Example:
create table t1 (c1 int, c2 int); create view v (x comment 'hello world', y) as select * from t1; describe v; +------+------+-------------+ | name | type | comment | +------+------+-------------+ | x | int | hello world | | y | int | | +------+------+-------------+