Abyss-lord opened a new pull request, #6495:
URL: https://github.com/apache/gravitino/pull/6495

   ### What changes were proposed in this pull request?
   
   Support table format output for Schema and Table command.
   
   ### Why are the changes needed?
   
   Fix: #6493 
   
   ### Does this PR introduce _any_ user-facing change?
   
   No.
   
   ### How was this patch tested?
   
   local test.
   
   ```bash
   gcli schema list -m demo_metalake --name Hive_catalog --output table -i
   +---------------------------+
   |          Schema           |
   +---------------------------+
   | convert_example           |
   | default                   |
   | test_multiple_data_source |
   +---------------------------+
   
   gcli schema details -m demo_metalake --name Hive_catalog.default --output 
table -i
   +---------+-----------------------+
   | Schema  |        Comment        |
   +---------+-----------------------+
   | default | Default Hive database |
   +---------+-----------------------+
   
   gcli table list -m demo_metalake --name Hive_catalog.default -i --output 
table
   +---------------------------------------+
   |                 Name                  |
   +---------------------------------------+
   | test_create_txt_tbl_without_delimited |
   | test_create_regex_tbl                 |
   | test_jinjia_tbl1                      |
   | test_jinjia_tbl2                      |
   | test                                  |
   | test1                                 |
   | example_table                         |
   | example_table2                        |
   | test_privilege                        |
   +---------------------------------------+
   
   gcli table details -m demo_metalake --name Hive_catalog.default.test1  -i 
--output table
   
   +----------+---------+---------------+----------+---------+
   |   Name   |  Type   | AutoIncrement | Nullable | Comment |
   +----------+---------+---------------+----------+---------+
   | id       | integer | false         | true     | N/A     |
   | name     | string  | false         | true     | N/A     |
   | standard | long    | false         | true     | N/A     |
   | dt       | string  | false         | true     | N/A     |
   +----------+---------+---------------+----------+---------+
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to