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
{{ message }}
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
Queries work if you have the first part or the second part of the 2 part hierarchical partition key.
They fail if you don't.
For example: Partition key = TenantId, UserId
Query works:
select * from c where c.tenantid = "contoso"
select * from c where c.tenantid = "contoso" and c.userid = "steve"
Query fails:
select * from c where c.userid = "steve"