Query to get 10 rows for Kusto queries

This commit is contained in:
Monica Gupta
2020-09-17 10:44:10 -07:00
parent c80b70bea4
commit f471da1f5a

View File

@@ -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();
}