11```` sql
22/*
3- { "name": "table" }
3+ { "name": "table", "title": "Tables" }
44*/
5- select " @schema" /* { "label": "owner ", "description": "Owner of the table", "visible": true } */
6- , " @table" /* { "label": "table name ", "description": "Name of the table", "visible": true } */
7- , remarks properties
8- , last_modification /* { "label": "last modification ", "description": "Last modification" } */
9- , table_type /* { "label": "table type ", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
5+ select " @schema" /* { "label": "Owner ", "description": "Owner of the table", "visible": false } */
6+ , " @table" /* { "label": "Name ", "description": "Name of the table", "visible": true } */
7+ , table_type /* { "label": "Type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
8+ , remarks /* { "label": "Comment ", "description": "Comments", "visible": true } */
9+ , last_modification /* { "label": "Last modification ", "description": "Last modification" } */
1010 from (select t .table_schema as " @schema"
1111 , t .table_name as " @table"
1212 , t.*
@@ -18,7 +18,7 @@ order by "@schema", "@table"
1818
1919```` sql
2020/*
21- { "name": "column" }
21+ { "name": "column", "title": "Columns" }
2222*/
2323select " @schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */
2424 , " @table" /* { "label": "table name", "description": "Name of the table", "visible": true } */
@@ -36,7 +36,7 @@ select "@schema" /* { "label": "owner", "description": "Owner o
3636
3737```` sql
3838/*
39- { "name": "pk" }
39+ { "name": "pk", "title": "Primary keys" }
4040*/
4141 select " @schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */
4242 , " @table" /* { "label": "table name", "description": "Name of the table", "visible": true } */
@@ -53,7 +53,7 @@ select "@schema" /* { "label": "owner", "description": "Owner o
5353
5454```` sql
5555/*
56- { "name": "index" }
56+ { "name": "index", "title": "Indexes" }
5757*/
5858select " @schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */
5959 , " @table" /* { "label": "table name", "description": "Name of the table", "visible": true } */
0 commit comments