File tree Expand file tree Collapse file tree
src/renderer/config/plugin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ export class DruidConfig implements BaseConfig {
88 connectionFetchAll : string ;
99 databaseCreate : string ;
1010 databaseDiskUsedRatio : string ;
11- databaseFetchAll : string ;
11+ databaseFetchAll = `
12+ SELECT SCHEMA_NAME AS name
13+ FROM INFORMATION_SCHEMA.SCHEMATA
14+ ` ;
1215 databaseItems : string ;
1316 databaseItemsFilterFuzzy : string ;
1417 databaseItemsFilterPrecise : string ;
@@ -21,7 +24,11 @@ export class DruidConfig implements BaseConfig {
2124 slowQueryFetchAll : string ;
2225 stopProcessor : string ;
2326 tableDiskUsedRatio : string ;
24- tableFetchAll : string ;
27+ tableFetchAll = `
28+ SELECT TABLE_NAME AS name
29+ FROM INFORMATION_SCHEMA.TABLES
30+ WHERE TABLE_SCHEMA = '{0}'
31+ ` ;
2532 tableItems : string ;
2633 tableItemsFilterFuzzy : string ;
2734 tableItemsFilterPrecise : string ;
You can’t perform that action at this time.
0 commit comments