mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 01:25:38 -05:00
XML output is truncated (#7748)
* QueryExecutionOptions change * add config points * Change api type used * Revert "QueryExecutionOptions change" This reverts commit 7adc3b032b5e4bc92234d337f0a145f0963c2d34. Let's not change the azdata file. * Change the signature of this api * Change the event * Change SqlCMD to use the API properly * Add type * Change type to interface - handle existing files * Remove unused import * Delete useless code * Remove unnecessary code * Fix the interface * remove whitespace
This commit is contained in:
4
src/sql/azdata.d.ts
vendored
4
src/sql/azdata.d.ts
vendored
@@ -748,8 +748,6 @@ declare module 'azdata' {
|
||||
deleteCredential(credentialId: string): Thenable<boolean>;
|
||||
}
|
||||
|
||||
|
||||
|
||||
export interface DidChangeLanguageFlavorParams {
|
||||
uri: string;
|
||||
language: string;
|
||||
@@ -757,7 +755,7 @@ declare module 'azdata' {
|
||||
}
|
||||
|
||||
export interface QueryExecutionOptions {
|
||||
options: Map<string, any>;
|
||||
options: { [option: string]: any; };
|
||||
}
|
||||
|
||||
export interface QueryProvider extends DataProvider {
|
||||
|
||||
Reference in New Issue
Block a user