You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Arbitrary KQL operators can be used by surrounding with %
E.g. filter(Url %matches regex% "https://docs.microsoft.com/([^/]*)/cli/azure/")
gets translated correctly as | where ['Url'] matches regex 'https://docs.microsoft.com/([^/]*)/cli/azure/'
The one that doesn't work right is %in% because it's overloaded with %in% ([Table or Query]). I will work on a patch to fix that. Workaround in the meantime is to use %in~% which is the case-insensitive version.
No description provided.
The text was updated successfully, but these errors were encountered: