From 0b905fef75ad466efb8b39b51187a38a67cba327 Mon Sep 17 00:00:00 2001 From: rajeshka Date: Thu, 27 Aug 2020 20:26:31 -0700 Subject: [PATCH] Reversing the multi-table fix till we have proper fix (#1060) --- .../DataSource/KustoResultsReader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Kusto.ServiceLayer/DataSource/KustoResultsReader.cs b/src/Microsoft.Kusto.ServiceLayer/DataSource/KustoResultsReader.cs index 9e9207ca..934ef248 100644 --- a/src/Microsoft.Kusto.ServiceLayer/DataSource/KustoResultsReader.cs +++ b/src/Microsoft.Kusto.ServiceLayer/DataSource/KustoResultsReader.cs @@ -13,9 +13,9 @@ namespace Microsoft.Kusto.ServiceLayer.DataSource /// we want the caller to only read the first table. We override the NextResult function here to only return one table /// from the IDataReader. /// - /*public override bool NextResult() + public override bool NextResult() { return false; - }*/ + } } } \ No newline at end of file