diff --git a/src/Microsoft.SqlTools.ServiceLayer/Utility/TextUtilities.cs b/src/Microsoft.SqlTools.ServiceLayer/Utility/TextUtilities.cs index 29c9fabc..29ca9e7f 100644 --- a/src/Microsoft.SqlTools.ServiceLayer/Utility/TextUtilities.cs +++ b/src/Microsoft.SqlTools.ServiceLayer/Utility/TextUtilities.cs @@ -104,7 +104,10 @@ namespace Microsoft.SqlTools.ServiceLayer.Utility || ch == '=' || ch == '/' || ch == '%' - || ch == ','; + || ch == ',' + || ch == ';' + || ch == '(' + || ch == ')'; } } }