Skip to content

Commit 3b97e3c

Browse files
authored
Bump SqlParser to 172.14.1 (#2444)
* update sqlparser to 172.14.1 * fix break changes
1 parent 17b0f17 commit 3b97e3c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<PackageReference Update="Microsoft.SqlServer.Migration.Assessment" Version="1.0.20241001.3" />
3030
<PackageReference Update="Microsoft.SqlServer.Migration.Logins" Version="1.0.20240920.1" />
3131
<PackageReference Update="Microsoft.SqlServer.Management.QueryStoreModel" Version="163.55.1" />
32-
<PackageReference Update="Microsoft.SqlServer.Management.SqlParser" Version="170.9.0" />
32+
<PackageReference Update="Microsoft.SqlServer.Management.SqlParser" Version="172.14.1" />
3333
<PackageReference Update="Microsoft.SqlServer.Migration.Tde" Version="1.0.0-preview.1.0.20230914.107" />
3434
<PackageReference Update="Microsoft.SqlServer.Migration.SqlTargetProvisioning" Version="1.0.20241022.2" />
3535

src/Microsoft.SqlTools.ServiceLayer/LanguageServices/AutoCompleteHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ internal static SignatureHelp ConvertMethodHelpTextListToSignatureHelp(List<Babe
729729
if (locations.ParamStartLocation != null)
730730
{
731731
// Is the cursor past the function name?
732-
var location = locations.ParamStartLocation.Value;
732+
var location = locations.ParamStartLocation;
733733
if (line > location.LineNumber || (line == location.LineNumber && line == location.LineNumber && column >= location.ColumnNumber))
734734
{
735735
currentParameter = 0;
@@ -746,7 +746,7 @@ internal static SignatureHelp ConvertMethodHelpTextListToSignatureHelp(List<Babe
746746
if (locations.ParamEndLocation != null)
747747
{
748748
// Is the cursor past the end of the parameter list on a different token?
749-
var location = locations.ParamEndLocation.Value;
749+
var location = locations.ParamEndLocation;
750750
if (line > location.LineNumber || (line == location.LineNumber && line == location.LineNumber && column > location.ColumnNumber))
751751
{
752752
currentParameter = -1;

0 commit comments

Comments
 (0)