From 185d6892674555e026f85ce2a991822a27f66a1f Mon Sep 17 00:00:00 2001 From: Lewis Sanchez <87730006+lewis-sanchez@users.noreply.github.com> Date: Fri, 25 Mar 2022 11:47:25 -0700 Subject: [PATCH] Camel cases and standardizes endpoint URI prefixes for execution plans (#1442) --- .../ExecutionPlan/Contracts/ExecutionPlanComparisonRequest.cs | 2 +- .../ExecutionPlan/Contracts/GetExecutionPlanRequest.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.SqlTools.ServiceLayer/ExecutionPlan/Contracts/ExecutionPlanComparisonRequest.cs b/src/Microsoft.SqlTools.ServiceLayer/ExecutionPlan/Contracts/ExecutionPlanComparisonRequest.cs index 80ff1b29..3bb20fa6 100644 --- a/src/Microsoft.SqlTools.ServiceLayer/ExecutionPlan/Contracts/ExecutionPlanComparisonRequest.cs +++ b/src/Microsoft.SqlTools.ServiceLayer/ExecutionPlan/Contracts/ExecutionPlanComparisonRequest.cs @@ -43,6 +43,6 @@ namespace Microsoft.SqlTools.ServiceLayer.ExecutionPlan.Contracts { public static readonly RequestType Type = - RequestType.Create("executionPlan/compareExecutionPlanGraph"); + RequestType.Create("queryExecutionPlan/compareExecutionPlanGraph"); } } diff --git a/src/Microsoft.SqlTools.ServiceLayer/ExecutionPlan/Contracts/GetExecutionPlanRequest.cs b/src/Microsoft.SqlTools.ServiceLayer/ExecutionPlan/Contracts/GetExecutionPlanRequest.cs index c02f283a..bc729bf4 100644 --- a/src/Microsoft.SqlTools.ServiceLayer/ExecutionPlan/Contracts/GetExecutionPlanRequest.cs +++ b/src/Microsoft.SqlTools.ServiceLayer/ExecutionPlan/Contracts/GetExecutionPlanRequest.cs @@ -23,6 +23,6 @@ namespace Microsoft.SqlTools.ServiceLayer.ExecutionPlan { public static readonly RequestType Type = - RequestType.Create("queryexecutionplan/getexecutionplan"); + RequestType.Create("queryExecutionPlan/getExecutionPlan"); } }