http://apache-carbondata-dev-mailing-list-archive.168.s1.nabble.com/jira-Updated-CARBONDATA-179-describe-new-table-show-old-table-s-schema-tp1433.html
> describe new table show old table's schema
> -------------------------------------------
>
> Key: CARBONDATA-179
> URL:
https://issues.apache.org/jira/browse/CARBONDATA-179> Project: CarbonData
> Issue Type: Bug
> Affects Versions: 0.2.0-incubating
> Reporter: Jay
> Assignee: Jay
> Priority: Minor
> Fix For: 0.2.0-incubating, 0.1.1-incubating
>
>
> when do step like this:
> CREATE TABLE age2(period string,max int,min int) STORED BY 'org.apache.carbondata.format';
> desc age2;
> drop table age2;
> CREATE TABLE age2(city_id string,city_name string) STORED BY 'org.apache.carbondata.format';
> desc age2;
> the second desc will show (period string,max int,min int), not (city_id string,city_name string)