* `vscode-mysql.maxTableCount`: The maximum table count shown in the tree view. (Default is **500**)
## Telemetry data
By default, anonymous telemetry data collection is turned on to understand user behavior to improve this extension. To disable it, update the settings.json as below:
@ -29,7 +29,7 @@ export class DatabaseNode implements INode {
port: this.port,
database: this.database,
});
returnUtility.queryPromise<any[]>(connection,`SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_SCHEMA = '${this.database}' LIMIT 100`)
returnUtility.queryPromise<any[]>(connection,`SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_SCHEMA = '${this.database}' LIMIT ${Utility.maxTableCount}`)