From f471da1f5a3ee43a173bd84c3cc956cd9a66bb65 Mon Sep 17 00:00:00 2001 From: Monica Gupta Date: Thu, 17 Sep 2020 10:44:10 -0700 Subject: [PATCH] Query to get 10 rows for Kusto queries --- src/Microsoft.Kusto.ServiceLayer/Scripting/Scripter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Kusto.ServiceLayer/Scripting/Scripter.cs b/src/Microsoft.Kusto.ServiceLayer/Scripting/Scripter.cs index 54922722..10019e42 100644 --- a/src/Microsoft.Kusto.ServiceLayer/Scripting/Scripter.cs +++ b/src/Microsoft.Kusto.ServiceLayer/Scripting/Scripter.cs @@ -22,7 +22,7 @@ namespace Microsoft.Kusto.ServiceLayer.Scripting // TODOKusto: Extract into the Kusto folder. selectQuery.Append($"{KustoQueryUtils.EscapeName(urn.GetAttribute("Name"))}"); selectQuery.Append($"{KustoQueryUtils.StatementSeparator}"); - selectQuery.Append("limit 1000"); + selectQuery.Append("limit 10"); return selectQuery.ToString(); }