mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51: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#}",
|
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
|
||||||
"version": "4.5.0.8",
|
"version": "4.5.0.18",
|
||||||
"downloadFileNames": {
|
"downloadFileNames": {
|
||||||
"Windows_86": "win-x86-net6.0.zip",
|
"Windows_86": "win-x86-net7.0.zip",
|
||||||
"Windows_64": "win-x64-net6.0.zip",
|
"Windows_64": "win-x64-net7.0.zip",
|
||||||
"OSX": "osx-x64-net6.0.tar.gz",
|
"OSX": "osx-x64-net7.0.tar.gz",
|
||||||
"Linux": "rhel-x64-net6.0.tar.gz"
|
"Linux": "rhel-x64-net7.0.tar.gz"
|
||||||
},
|
},
|
||||||
"installDirectory": "./sqltoolsservice/{#platform#}/{#version#}",
|
"installDirectory": "./sqltoolsservice/{#platform#}/{#version#}",
|
||||||
"executableFiles": ["MicrosoftSqlToolsServiceLayer.exe", "MicrosoftSqlToolsServiceLayer"],
|
"executableFiles": ["MicrosoftSqlToolsServiceLayer.exe", "MicrosoftSqlToolsServiceLayer"],
|
||||||
|
|||||||
@@ -1111,12 +1111,7 @@ export class ConnectionManagementService extends Disposable implements IConnecti
|
|||||||
}
|
}
|
||||||
|
|
||||||
return this._providers.get(providerId).onReady.then(provider => {
|
return this._providers.get(providerId).onReady.then(provider => {
|
||||||
return provider.listDatabases(uri).then(result => {
|
return provider.listDatabases(uri);
|
||||||
if (result && result.databaseNames) {
|
|
||||||
result.databaseNames.sort();
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user