Reputation: 3696
If I fire .show table <TableName> extents
I do see the list of extents with tags. But if I try to list those tags along with the table data I get blank, so the following query returns blank tags:-
<TableName> | extend tags=extent_tags()
Why is it so ?
Upvotes: 0
Views: 203
Reputation: 25895
are you querying the table directly, or after applying some operators/functions on the raw data? (perhaps, hidden by a function that shares the same name as the table, and therefore 'hides' it)
as the docs mention:
Applying this function to calculated data which is not attached to a data shard returns an empty value
Upvotes: 2