mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
use reliable way to detect createtable statements (#19897)
* use reliable way to detect createtable statements * PR comments * comments
This commit is contained in:
5
extensions/mssql/src/mssql.d.ts
vendored
5
extensions/mssql/src/mssql.d.ts
vendored
@@ -391,6 +391,7 @@ declare module 'mssql' {
|
||||
generateDeployPlan(packageFilePath: string, databaseName: string, ownerUri: string, taskExecutionMode: azdata.TaskExecutionMode): Thenable<GenerateDeployPlanResult>;
|
||||
getOptionsFromProfile(profilePath: string): Thenable<DacFxOptionsResult>;
|
||||
validateStreamingJob(packageFilePath: string, createStreamingJobTsql: string): Thenable<ValidateStreamingJobResult>;
|
||||
parseTSqlScript(filePath: string, databaseSchemaProvider: string): Thenable<ParseTSqlScriptResult>;
|
||||
}
|
||||
|
||||
export interface DacFxResult extends azdata.ResultStatus {
|
||||
@@ -408,6 +409,10 @@ declare module 'mssql' {
|
||||
export interface ValidateStreamingJobResult extends azdata.ResultStatus {
|
||||
}
|
||||
|
||||
export interface ParseTSqlScriptResult {
|
||||
containsCreateTableStatement: boolean;
|
||||
}
|
||||
|
||||
export interface ExportParams {
|
||||
databaseName: string;
|
||||
packageFilePath: string;
|
||||
|
||||
Reference in New Issue
Block a user