mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 09:35:36 -05:00
Feature/autocomp options (#63)
* Enable IntelliSense settings * Fix up some bugs in the IntelliSense settings. * Code cleans for PR * Fix a couple exceptions that are breaks query execute and intellisense. * Add useLowerCase flag and settings tests
This commit is contained in:
@@ -105,7 +105,7 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
|
||||
string sqlVariantType = (string)sqlVariantTypeResult.Value.RawObject;
|
||||
|
||||
// If the typename is null, then the whole value is null
|
||||
if (sqlVariantTypeResult.Value == null)
|
||||
if (sqlVariantTypeResult.Value == null || string.IsNullOrEmpty(sqlVariantType))
|
||||
{
|
||||
results.Add(sqlVariantTypeResult.Value);
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user