Github user jihoonson commented on the pull request:
https://github.com/apache/tajo/pull/389#issuecomment-77532031
@hyunsik with the latest patch, the ```create table``` statement works well.
However, I couldn't see the detailed information of nested columns. Please
see the following example.
```
default> create table nested_table (f1 int, nested_field record (f2 int4,
f3 int8), f3 text);
OK
default> \d
nested_table
default> \d nested_table
table name: default.nested_table
table path: hdfs://localhost:7020/tajo/warehouse/default/nested_table
store type: CSV
number of rows: 0
volume: 0 B
Options:
'text.delimiter'='|'
schema:
f1 INT4
nested_field RECORD
f3 TEXT
```
The ```nested_field``` column is presented as just one record, and details
are veiled. It would be much greater if you improve it.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---