Fixed Turkish I problem with autocomplete keyword suggestions (#158)

This commit is contained in:
Mitchell Sternke
2016-11-22 17:05:03 -08:00
committed by GitHub
parent 2e3bd3ae27
commit ba0f564126

View File

@@ -408,7 +408,7 @@ namespace Microsoft.SqlTools.ServiceLayer.LanguageServices
if (string.IsNullOrWhiteSpace(tokenText) || completionText.StartsWith(tokenText, StringComparison.OrdinalIgnoreCase))
{
completionItems[completionItemIndex] = CreateDefaultCompletionItem(
useLowerCase ? completionText.ToLower() : completionText.ToUpper(),
useLowerCase ? completionText.ToLowerInvariant() : completionText.ToUpperInvariant(),
row,
startColumn,
endColumn);