Re: Change the 'comment' content for column when execute command 'desc formatted table_name'

2018-04-25 Thread Ravindra Pesala
I agree with Liang's suggestion to align the information with table schema. And I have one suggestion related to NO_INVERTED_INDEX , instead of mentioning no inverted index columns better mention which are inverted index columns. It is very hard user to understand which are inverted index colum

Re: Change the 'comment' content for column when execute command 'desc formatted table_name'

2018-04-25 Thread manishgupta88
I agree with Liang. We can modify the complete describe formatted command display and show the detailed information as suggested by Liang. Liang we can make a small change in your suggestion. As we are displaying the information to the user we should not include Underscore(_) in the property names

Re: Change the 'comment' content for column when execute command 'desc formatted table_name'

2018-04-25 Thread Venkata Gollamudi
I agree with Liang, Better we align with create table terminology and properties. Details of properties, user can easily get from Create table DDL documentation. Regards, Ramana On Thu, Apr 26, 2018 at 8:17 AM, Liang Chen wrote: > Hi > > Attaching my proposed "desc_table_info": > desc_table_inf

Re: Change the 'comment' content for column when execute command 'desc formatted table_name'

2018-04-25 Thread Liang Chen
Hi Attaching my proposed "desc_table_info": desc_table_info.txt Regards Liang -- Sent from: http://apache-carbondata-dev-mailing-list-archive.1130556.n5.nabble.com/

Re: Change the 'comment' content for column when execute command 'desc formatted table_name'

2018-04-25 Thread Liang Chen
Hi Thank you started the discussion. Propose to completely optimize this part, my suggestion as below : CREATE TABLE IF NOT EXISTS test_table ( id INT COMMENT 'device id for sensor XYZ', name STRING, salary LONG, tax DOUBLE ) PARTITIONED BY (city STRING) STORED BY 'carbondata

Change the 'comment' content for column when execute command 'desc formatted table_name'

2018-04-25 Thread xm_zzc
Hi dev: Currently the 'comment' content for column is ambiguous and unclear when execute command 'desc formatted table_name', for example: ran create table sql: CREATE TABLE IF NOT EXISTS test_table ( id INT, name STRING, city STRING, salary LONG, tax DOUBLE ) STOR