Fixing column datatype issues (#48)

This was an issue where non-string types were being read back as strings (ie, int was read back as a string) resulting in the objects coming back being completely unintelligible values. It was a very simple issue where the column datatype wasn't being set correctly in our wrapper type.
This commit is contained in:
Benjamin Russell
2016-09-13 15:48:30 -07:00
committed by GitHub
parent 1671f762bf
commit 92eb1376c1

View File

@@ -148,7 +148,7 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
}
else
{
DataType = DataType;
DataType = column.DataType;
}
}