[
https://issues.apache.org/jira/browse/FLINK-18298?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17135681#comment-17135681
]
godfrey he edited comment on FLINK-18298 at 6/15/20, 9:39 AM:
--------------------------------------------------------------
Thanks for the suggestion, I list all show commands:
||command||header||
|SHOW CATALOG|catalog name|
|SHOW DATABASE|database name|
|SHOW TABLES|table name|
|SHOW VIEW|view name|
|SHOW FUNCTIONS|function name|
was (Author: godfreyhe):
Thanks for the suggestion, I list all show commands:
||command||header||
|SHOW CATALOG|catalog name|
|SHOW DATABASE|database name|
|SHOW TABLES|table name|
|SHOW VIEW|view name|
|SHOW FUNCTIONS|function name|
|SHOW VIEW|view name|
> Rename TableResult headers of SHOW statements
> ---------------------------------------------
>
> Key: FLINK-18298
> URL: https://issues.apache.org/jira/browse/FLINK-18298
> Project: Flink
> Issue Type: Improvement
> Components: Table SQL / API
> Affects Versions: 1.11.0
> Reporter: Fabian Hueske
> Priority: Major
>
> The SHOW TABLES and SHOW FUNCTIONS commands are listing all tables and
> functions of the currently selected database.
> With FLIP-84, the result is passed back as a TableResult object, that
> includes the schema of the result as a TableSchema.
> The column name for the result of SHOW TABLES and SHOW FUNCTION is "result":
>
> {code:java}
> SHOW TABLES;
> result
> myTable1
> myTable2
> {code}
>
> I think this name is not very descriptive and too generic.
> IMO it would be nice to change it to "table name" and "function name",
> respectively.
> {code:java}
> SHOW TABLES;
> table names
> myTable1
> myTable2{code}
> Would be nice to get this little improvement in before the 1.11 release.
> cc [~godfreyhe], [~twalthr]
--
This message was sent by Atlassian Jira
(v8.3.4#803005)