From dfa4f2eaaa8af58fb3b60effa809a035a1b2dc7e Mon Sep 17 00:00:00 2001 From: Monica Gupta Date: Sat, 26 Sep 2020 13:43:07 -0700 Subject: [PATCH] Fix to address dynamic type (#1084) Co-authored-by: Monica Gupta --- .../QueryExecution/Contracts/DbColumnWrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Kusto.ServiceLayer/QueryExecution/Contracts/DbColumnWrapper.cs b/src/Microsoft.Kusto.ServiceLayer/QueryExecution/Contracts/DbColumnWrapper.cs index 9aa25811..0944c95e 100644 --- a/src/Microsoft.Kusto.ServiceLayer/QueryExecution/Contracts/DbColumnWrapper.cs +++ b/src/Microsoft.Kusto.ServiceLayer/QueryExecution/Contracts/DbColumnWrapper.cs @@ -89,7 +89,7 @@ namespace Microsoft.Kusto.ServiceLayer.QueryExecution.Contracts NumericScale = SafeGetValue(row, "NumericScale"); UdtAssemblyQualifiedName = SafeGetValue(row, "UdtAssemblyQualifiedName"); DataType = SafeGetValue(row, "DataType"); - DataTypeName = SafeGetValue(row, "ColumnType"); + DataTypeName = SafeGetValue(row, "ColumnType") ?? "dynamic"; ColumnName = SafeGetValue(row, "ColumnName"); }