Archived
Fix to address dynamic type (#1084)
Co-authored-by: Monica Gupta <mogupt@microsoft.com>
This commit is contained in:
co-authored by
Monica Gupta
parent
47e7a2f492
commit
dfa4f2eaaa
@@ -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