mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
resend previous PR with test fixes (#19912)
* Revert "Revert "use reliable way to detect createtable statements (#19897)" (#19906)"
This reverts commit c211fb981c.
* fix tests
* fix test cases
This commit is contained in:
@@ -545,6 +545,11 @@ export interface ValidateStreamingJobParams {
|
||||
createStreamingJobTsql: string
|
||||
}
|
||||
|
||||
export interface ParseTSqlScriptParams {
|
||||
filePath: string;
|
||||
databaseSchemaProvider: string;
|
||||
}
|
||||
|
||||
export namespace ExportRequest {
|
||||
export const type = new RequestType<ExportParams, mssql.DacFxResult, void, void>('dacfx/export');
|
||||
}
|
||||
@@ -577,6 +582,10 @@ export namespace ValidateStreamingJobRequest {
|
||||
export const type = new RequestType<ValidateStreamingJobParams, mssql.ValidateStreamingJobResult, void, void>('dacfx/validateStreamingJob');
|
||||
}
|
||||
|
||||
export namespace ParseTSqlScriptRequest {
|
||||
export const type = new RequestType<ParseTSqlScriptParams, mssql.ParseTSqlScriptResult, void, void>('dacfx/parseTSqlScript');
|
||||
}
|
||||
|
||||
// ------------------------------- </ DacFx > ------------------------------------
|
||||
|
||||
// ------------------------------- <CMS> ----------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user