merged
TanStack/db • 5:30 PM - Feb 18, 2026
ldirer
claude

Fixes a bug where like/ilike patterns using % and _ failed to match values containing newline characters by enabling the RegExp dotAll (s) flag, aligning behavior with SQL LIKE semantics. This improves correctness of query filtering and adds both unit and e2e coverage plus a patch changeset. Main concern is reliance on duplicated evaluateLike logic (fixed in two places) and ensuring dotAll flag support/consistency across all target JS runtimes; otherwise behavior could diverge or regress.