This commit is contained in:
Benjamin Toby
2025-06-04 08:44:33 +01:00
parent 761348de08
commit 881128fcea
5 changed files with 8 additions and 1 deletions
@@ -27,6 +27,9 @@ function sqlGenerator({ tableName, genObject, dbFullName, count }) {
if (queryObj.nullValue) {
str = `${finalFieldName} IS NULL`;
}
else if (queryObj.notNullValue) {
str = `${finalFieldName} IS NOT NULL`;
}
else if (typeof queryObj.value == "string" ||
typeof queryObj.value == "number") {
const valueParsed = String(queryObj.value);