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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Patch Changes
#17168ecdb61 Thanks @mattzcarey! - fix(shell): replace LIKE pattern matching with primary-key range scans in Workspace.rm({ recursive: true }) and the glob prefilter. D1 can reject the previous LIKE ? ESCAPE ? queries with D1_ERROR: LIKE or GLOB pattern too complex: SQLITE_ERROR; the range predicate (path >= '{dir}/' AND path < '{dir}0') avoids that limit, scans the path index directly, and needs no escaping of %/_ in path names.