(value: string)
| 33 | // prefix. WorkOS org ids contain underscores, and a bare `_` in a LIKE pattern |
| 34 | // matches any character, which would widen the match to unrelated tenants. |
| 35 | const escapeLike = (value: string): string => value.replace(/[\\%_]/g, "\\$&"); |
| 36 | |
| 37 | /** |
| 38 | * Delete all rows owned by `organizationId`: every executor tenant table, the |
no test coverage detected