Camel cases and standardizes endpoint URI prefixes for execution plans (#1442)

This commit is contained in:
Lewis Sanchez
2022-03-25 11:47:25 -07:00
committed by GitHub
parent cf06cf2b8e
commit 185d689267
2 changed files with 2 additions and 2 deletions

View File

@@ -43,6 +43,6 @@ namespace Microsoft.SqlTools.ServiceLayer.ExecutionPlan.Contracts
{ {
public static readonly public static readonly
RequestType<ExecutionPlanComparisonParams, ExecutionPlanComparisonResult> Type = RequestType<ExecutionPlanComparisonParams, ExecutionPlanComparisonResult> Type =
RequestType<ExecutionPlanComparisonParams, ExecutionPlanComparisonResult>.Create("executionPlan/compareExecutionPlanGraph"); RequestType<ExecutionPlanComparisonParams, ExecutionPlanComparisonResult>.Create("queryExecutionPlan/compareExecutionPlanGraph");
} }
} }

View File

@@ -23,6 +23,6 @@ namespace Microsoft.SqlTools.ServiceLayer.ExecutionPlan
{ {
public static readonly public static readonly
RequestType<GetExecutionPlanParams, GetExecutionPlanResult> Type = RequestType<GetExecutionPlanParams, GetExecutionPlanResult> Type =
RequestType<GetExecutionPlanParams, GetExecutionPlanResult>.Create("queryexecutionplan/getexecutionplan"); RequestType<GetExecutionPlanParams, GetExecutionPlanResult>.Create("queryExecutionPlan/getExecutionPlan");
} }
} }