(builder: unknown, context: ExecutorOwnerPolicyContext)
| 34 | // columns; it isn't assignable to the generic `Record<string, AnyColumn>` builder |
| 35 | // (column-name positions are contravariant), so accept it loosely and re-narrow. |
| 36 | const ownerVisibility = (builder: unknown, context: ExecutorOwnerPolicyContext) => |
| 37 | ownerVisibilityCondition(builder as AnyConditionBuilder, context) as Condition | boolean; |
| 38 | |
| 39 | /** A truly global table (the blob store). Isolation is carried in the row's |
| 40 | * `namespace` (which encodes the owner partition + plugin id), not a policy. */ |
no test coverage detected