Skip to content

Commit 4ccd395

Browse files
authored
Merge pull request #12 from RohitM-IN/development
Add extra metadata for ISNULL function, including default value and type
2 parents cde389a + a643a84 commit 4ccd395

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqlparser-devexpress",
3-
"version": "2.3.3",
3+
"version": "2.3.4",
44
"main": "src/index.js",
55
"type": "module",
66
"scripts": {

src/core/converter.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ function DevExpressConverter() {
141141
let comparison = [left, operatorToken, right];
142142

143143
if ((ast.left && isFunctionNullCheck(ast.left, true)) || (ast.value && isFunctionNullCheck(ast.value, false))) {
144-
comparison = [[left, operatorToken, right], 'or', [left, operatorToken, null]];
144+
comparison = [[left, operatorToken, right], 'or', [left, operatorToken, null, {type: "ISNULL", defaultValue: (ast.left ?? ast.value).args[1]?.value}]];
145145
} else if (ast.right && isFunctionNullCheck(ast.right, true)) {
146-
comparison = [[left, operatorToken, right], 'or', [right, operatorToken, null]];
146+
comparison = [[left, operatorToken, right], 'or', [right, operatorToken, null, {type: "ISNULL", defaultValue: ast.right.args[1]?.value}]];
147147
}
148148

149149
// Apply short-circuit evaluation if enabled
@@ -322,7 +322,7 @@ function DevExpressConverter() {
322322
* @returns {boolean} True if the condition is always true.
323323
*/
324324
function isAlwaysTrue(condition) {
325-
return Array.isArray(condition) && condition.length === 3 && evaluateExpression(...condition) == true;
325+
return Array.isArray(condition) && condition.length >= 3 && evaluateExpression(...condition) == true;
326326
}
327327

328328
/**
@@ -331,7 +331,7 @@ function DevExpressConverter() {
331331
* @returns {boolean} True if the condition is always false.
332332
*/
333333
function isAlwaysFalse(condition) {
334-
return Array.isArray(condition) && condition.length === 3 && evaluateExpression(...condition) == false;
334+
return Array.isArray(condition) && condition.length >= 3 && evaluateExpression(...condition) == false;
335335
}
336336

337337
/**

tests/parser.test.js

+9-7
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ describe("Parser SQL to dx Filter Builder", () => {
137137
expected: [
138138
["SourceID", "=", 2],
139139
"or",
140-
["SourceID", "=", null],
140+
["SourceID", "=", null,{ "defaultValue": 0, "type": "ISNULL"}],
141141
"or",
142142
["SourceID", "=", 0],
143143
"or",
144-
["SourceID", "=", null]
144+
["SourceID", "=", null,{ "defaultValue": 0, "type": "ISNULL"}]
145145
]
146146
},
147147
{
@@ -153,14 +153,14 @@ describe("Parser SQL to dx Filter Builder", () => {
153153
[
154154
["CompanyID", "=", 0],
155155
"or",
156-
["CompanyID", "=", null]
156+
["CompanyID", "=", null,{ "defaultValue": 0, "type": "ISNULL"}]
157157
]
158158
],
159159
"and",
160160
[
161161
["IsSubdealer", "=", true],
162162
"or",
163-
["IsSubdealer", "=", null]
163+
["IsSubdealer", "=", null,{ "defaultValue": 0, "type": "ISNULL"}]
164164
]
165165
]
166166
},
@@ -187,19 +187,21 @@ describe("Parser SQL to dx Filter Builder", () => {
187187
expected: [
188188
["TicketID", "=", 123],
189189
"or",
190-
["TicketID", "=", null]
190+
["TicketID", "=", null,{ "defaultValue": 0, "type": "ISNULL"}]
191191
]
192192
},
193193
{
194194
input: "CompanyID = ISNULL({LeadDocument.CompanyID},0) OR (ISNULL(CompanyID,0) = 0))",
195195
expected: [
196196
["CompanyID", "=", 7],
197197
"or",
198-
["CompanyID", "=", null],
198+
["CompanyID", "=", null,{ "defaultValue": 0, "type": "ISNULL"}],
199199
"or",
200200
["CompanyID", "=", 0],
201201
"or",
202-
["CompanyID", "=", null]
202+
["CompanyID", "=", null,{ "defaultValue": 0, "type": "ISNULL"},
203+
204+
]
203205

204206
]
205207
}

0 commit comments

Comments
 (0)