This commit is contained in:
Benjamin Toby
2025-08-26 11:37:28 +01:00
parent 82bea3efd0
commit 2336b71703
5 changed files with 12 additions and 4 deletions
@@ -35,7 +35,7 @@ function sqlGenOperatorGen({ fieldName, value, equality, }) {
}
else if (equality == "REGEXP") {
return {
str: `LOWER(${fieldName}) REGEXP LOWER(?')`,
str: `LOWER(${fieldName}) REGEXP LOWER(?)`,
param: value,
};
}