mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Update vscode-mssql.d.ts to match what's in the vscode-mssql repo (#22830)
* update vscode-mssql.d.ts * update extensions that need updates because of the vscode-mssql.d.ts changes * remove skip * fix sql projects tests failing because vscode-mssql couldn't be found
This commit is contained in:
@@ -60,7 +60,7 @@ export class MockVscodeMssqlIExtension implements vscodeMssql.IExtension {
|
||||
createConnectionDetails(_: vscodeMssql.IConnectionInfo): vscodeMssql.ConnectionDetails {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
getServerInfo(_: vscodeMssql.IConnectionInfo): vscodeMssql.ServerInfo {
|
||||
getServerInfo(_: vscodeMssql.IConnectionInfo): vscodeMssql.IServerInfo {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
}
|
||||
@@ -115,7 +115,8 @@ export function createTestCredentials(): vscodeMssql.IConnectionInfo {
|
||||
multipleActiveResultSets: false,
|
||||
packetSize: 8192,
|
||||
typeSystemVersion: 'Latest',
|
||||
connectionString: ''
|
||||
connectionString: '',
|
||||
commandTimeout: undefined
|
||||
};
|
||||
return creds;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user