11```` sql
22/*
3- { "name": "table", "title": "Tables" }
3+ {
4+ "name": "table",
5+ "title": "Tables",
6+ "icon": "table_chart"
7+ }
48*/
59select " @schema" /* { "label": "Owner", "description": "Owner of the table", "visible": false } */
6- , " @table" /* { "label": "Name", "description": "Name of the table", "visible": true } */
10+ , " @table" /* { "label": "Name", "description": "Name of the table" } */
711 , table_type /* { "label": "Type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
812 , remarks /* { "label": "Comment", "description": "Comments", "visible": true } */
913 , last_modification /* { "label": "Last modification", "description": "Last modification" } */
@@ -13,12 +17,15 @@ select "@schema" /* { "label": "Owner", "description": "Owner of the
1317 from information_schema .tables t
1418 where lower (t .table_schema ) like lower (' ${uri.path(0)}' )
1519 and lower (t .table_name ) like lower (' ${uri.path(1)}' ))
16- order by " @schema" , " @table"
1720````
1821
1922```` sql
2023/*
21- { "name": "column", "title": "Columns" }
24+ {
25+ "name": "column",
26+ "title": "Columns",
27+ "icon": "view_column"
28+ }
2229*/
2330select " @schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */
2431 , " @table" /* { "label": "table name", "description": "Name of the table", "visible": true } */
@@ -36,7 +43,11 @@ select "@schema" /* { "label": "owner", "description": "Owner o
3643
3744```` sql
3845/*
39- { "name": "pk", "title": "Primary keys" }
46+ {
47+ "name": "pk",
48+ "title": "Primary keys",
49+ "icon": "vpn_key"
50+ }
4051*/
4152 select " @schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */
4253 , " @table" /* { "label": "table name", "description": "Name of the table", "visible": true } */
0 commit comments