mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
Fix to address dynamic type (#1084)
Co-authored-by: Monica Gupta <mogupt@microsoft.com>
This commit is contained in:
@@ -89,7 +89,7 @@ namespace Microsoft.Kusto.ServiceLayer.QueryExecution.Contracts
|
||||
NumericScale = SafeGetValue<int?>(row, "NumericScale");
|
||||
UdtAssemblyQualifiedName = SafeGetValue<string>(row, "UdtAssemblyQualifiedName");
|
||||
DataType = SafeGetValue<Type>(row, "DataType");
|
||||
DataTypeName = SafeGetValue<string>(row, "ColumnType");
|
||||
DataTypeName = SafeGetValue<string>(row, "ColumnType") ?? "dynamic";
|
||||
ColumnName = SafeGetValue<string>(row, "ColumnName");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user