From abe9ef5aaf938e5315e50a71cee416dc4a5ddecc Mon Sep 17 00:00:00 2001 From: Ziv Caspi Date: Tue, 17 Mar 2026 15:33:00 +0200 Subject: [PATCH] cache-policy: Added an example for specifying the data scope when using the table() intrinsic. --- data-explorer/kusto/management/cache-policy.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data-explorer/kusto/management/cache-policy.md b/data-explorer/kusto/management/cache-policy.md index f5796ee23f..d2e712d7a9 100644 --- a/data-explorer/kusto/management/cache-policy.md +++ b/data-explorer/kusto/management/cache-policy.md @@ -62,6 +62,9 @@ There are several query possibilities: Possible values are the same as for the client request property. * Add a `datascope=...` text immediately after a table reference in the query body. Possible values are `all` and `hotcache`. + If the table is referenced by using the [table() function](../query/table-function.md ), + then the data scope is provided as a second string argument to the function. + For example, `table("T", "hotcache") | count` means the same as `T datascope=hotcache | count`. The `default` value indicates use of the default settings, which determine that the query should cover all data.