mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-30 17:24:37 -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");
|
NumericScale = SafeGetValue<int?>(row, "NumericScale");
|
||||||
UdtAssemblyQualifiedName = SafeGetValue<string>(row, "UdtAssemblyQualifiedName");
|
UdtAssemblyQualifiedName = SafeGetValue<string>(row, "UdtAssemblyQualifiedName");
|
||||||
DataType = SafeGetValue<Type>(row, "DataType");
|
DataType = SafeGetValue<Type>(row, "DataType");
|
||||||
DataTypeName = SafeGetValue<string>(row, "ColumnType");
|
DataTypeName = SafeGetValue<string>(row, "ColumnType") ?? "dynamic";
|
||||||
ColumnName = SafeGetValue<string>(row, "ColumnName");
|
ColumnName = SafeGetValue<string>(row, "ColumnName");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user