You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Jark Wu (Jira)" <ji...@apache.org> on 2021/03/13 14:23:00 UTC

[jira] [Created] (FLINK-21774) Do not display column names when retrun set is emtpy in SQL Client

Jark Wu created FLINK-21774:
-------------------------------

             Summary: Do not display column names when retrun set is emtpy in SQL Client
                 Key: FLINK-21774
                 URL: https://issues.apache.org/jira/browse/FLINK-21774
             Project: Flink
          Issue Type: Sub-task
          Components: Table SQL / Client
            Reporter: Jark Wu


Currently, SQL Client will display column names even if the return set is empty:

{code}
SHOW MODULES;
+-------------+
| module name |
+-------------+
0 row in set
!ok
{code}

In mature databases, e.g. MySQL, they only show "Empty Set" instead of column names:

{code}
mysql> show tables;
Empty set (0.00 sec)
{code}

We can improve this by simply omit the column names header. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)