mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 09:35:36 -05:00
remove client side sorting for db list (#21899)
* remove client side sorting for db list * update sts
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
|
||||
"version": "4.5.0.8",
|
||||
"version": "4.5.0.18",
|
||||
"downloadFileNames": {
|
||||
"Windows_86": "win-x86-net6.0.zip",
|
||||
"Windows_64": "win-x64-net6.0.zip",
|
||||
"OSX": "osx-x64-net6.0.tar.gz",
|
||||
"Linux": "rhel-x64-net6.0.tar.gz"
|
||||
"Windows_86": "win-x86-net7.0.zip",
|
||||
"Windows_64": "win-x64-net7.0.zip",
|
||||
"OSX": "osx-x64-net7.0.tar.gz",
|
||||
"Linux": "rhel-x64-net7.0.tar.gz"
|
||||
},
|
||||
"installDirectory": "./sqltoolsservice/{#platform#}/{#version#}",
|
||||
"executableFiles": ["MicrosoftSqlToolsServiceLayer.exe", "MicrosoftSqlToolsServiceLayer"],
|
||||
|
||||
@@ -1111,12 +1111,7 @@ export class ConnectionManagementService extends Disposable implements IConnecti
|
||||
}
|
||||
|
||||
return this._providers.get(providerId).onReady.then(provider => {
|
||||
return provider.listDatabases(uri).then(result => {
|
||||
if (result && result.databaseNames) {
|
||||
result.databaseNames.sort();
|
||||
}
|
||||
return result;
|
||||
});
|
||||
return provider.listDatabases(uri);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user