mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 01:25:41 -05:00
Ensuring DisplayValue is set to a value when null (#292)
* Ensuring DisplayValue is set to a value when null * Changes that *actually do something!* * Changes that *actually do something!*
This commit is contained in:
@@ -198,7 +198,7 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
|
||||
if (isNullFunc == null ? length.ValueLength == 0 : isNullFunc(length.TotalLength))
|
||||
{
|
||||
result.RawObject = null;
|
||||
result.DisplayValue = null;
|
||||
result.DisplayValue = SR.QueryServiceCellNull;
|
||||
result.IsNull = true;
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user