Commit 23c6700
committed
fix: WASM filterStringLike case sensitivity — use sqlLikeMatch instead of sqlLikeMatchCI
SQL LIKE is case-sensitive per standard. The JS evaluator (compileLikeRegex)
was fixed in aec0ced but the WASM export still called sqlLikeMatchCI
(case-insensitive), creating an inconsistency between JS and WASM paths.
Changed filterStringLike to call sqlLikeMatch (case-sensitive) and removed
the now-dead sqlLikeMatchCI and toLowerASCII functions.1 parent 1e3db7c commit 23c6700
1 file changed
+1
-39
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
952 | 952 | | |
953 | 953 | | |
954 | 954 | | |
955 | | - | |
956 | | - | |
957 | | - | |
958 | | - | |
959 | | - | |
960 | | - | |
961 | | - | |
962 | | - | |
963 | | - | |
964 | | - | |
965 | | - | |
966 | | - | |
967 | | - | |
968 | | - | |
969 | | - | |
970 | | - | |
971 | | - | |
972 | | - | |
973 | | - | |
974 | | - | |
975 | | - | |
976 | | - | |
977 | | - | |
978 | | - | |
979 | | - | |
980 | | - | |
981 | | - | |
982 | | - | |
983 | | - | |
984 | | - | |
985 | | - | |
986 | | - | |
987 | | - | |
988 | | - | |
989 | | - | |
990 | 955 | | |
991 | | - | |
992 | | - | |
993 | | - | |
994 | 956 | | |
995 | 957 | | |
996 | 958 | | |
| |||
1014 | 976 | | |
1015 | 977 | | |
1016 | 978 | | |
1017 | | - | |
| 979 | + | |
1018 | 980 | | |
1019 | 981 | | |
1020 | 982 | | |
| |||
0 commit comments