Skip to content

Commit 83cd196

Browse files
authored
Merge pull request #6 from RohitM-IN/development
Bug Fixes
2 parents ea0c357 + 47825b7 commit 83cd196

File tree

6 files changed

+63
-4
lines changed

6 files changed

+63
-4
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.0.6",
3+
"version": "2.0.7",
44
"main": "src/index.js",
55
"type": "module",
66
"scripts": {

src/core/converter.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ function DevExpressConverter() {
139139
return handleInOperator(ast);
140140
}
141141

142-
const left = convertValue(ast.field);
143-
const right = convertValue(ast.value);
142+
const left = ast.left !== undefined ? processAstNode(ast.left) : convertValue(ast.field);
143+
const right = ast.right !== undefined ? processAstNode(ast.right) : convertValue(ast.value);
144144
const comparison = [left, ast.operator.toLowerCase(), right];
145145

146146
// Apply short-circuit evaluation if enabled

src/core/parser.js

+30
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,21 @@ export function parse(input, variables = []) {
1919
const tokenizer = new Tokenizer(input);
2020
let currentToken = tokenizer.nextToken();
2121

22+
// // Debugging: log the tokens
23+
// const tokens = [];
24+
// let tempToken = currentToken;
25+
// while (tempToken) {
26+
// tokens.push(tempToken);
27+
// tempToken = tokenizer.peekNextToken();
28+
// tokenizer.nextToken();
29+
// }
30+
31+
// console.log("Tokens:", tokens);
32+
33+
// // Reset the tokenizer
34+
// tokenizer.reset();
35+
// currentToken = tokenizer.nextToken();
36+
2237
// Moves to the next token in the input
2338
function next() {
2439
currentToken = tokenizer.nextToken();
@@ -68,6 +83,21 @@ export function parse(input, variables = []) {
6883
}
6984

7085
next(); // Consume the closing parenthesis
86+
87+
// Check if the next token is an operator and process it
88+
if (currentToken && currentToken.type === "operator") {
89+
const operator = currentToken.value;
90+
next(); // Move to the next token after the operator
91+
const value = parseValue(); // Parse the value after the operator
92+
93+
return {
94+
type: "comparison",
95+
left: { type: "function", name: funcName, args },
96+
operator,
97+
value
98+
};
99+
}
100+
71101
return { type: "function", name: funcName, args };
72102
}
73103

src/core/tokenizer.js

+16
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,22 @@ class Tokenizer {
6363
// If no valid token is found, throw an error with the remaining input for debugging
6464
throw new Error(`Unexpected token at: ${this.input.slice(this.index)}`);
6565
}
66+
67+
peekNextToken() {
68+
if (this.index >= this.input.length) return null;
69+
70+
const savedIndex = this.index; // Save current index
71+
try {
72+
return this.nextToken(); // Get next token
73+
} finally {
74+
this.index = savedIndex; // Restore index
75+
}
76+
}
77+
78+
reset() {
79+
this.index = 0; // Reset index to the beginning of the input
80+
}
81+
6682
}
6783

6884
export { Tokenizer };

src/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,8 @@ export function convertAstToDevextreme(ast, variables, state) {
4040
// const devExpressFilter = parseFilterString("FromDate <= '{TransferOutwardDocument.DocDate}' ", sampleResultObject, "TransferOutwardDocument", "789");
4141
// const devExpressFilter = parseFilterString("(RS2ID in ({SaleOrderStatusStmtGlobalRpt.StateID}) Or ({SaleOrderStatusStmtGlobalRpt.StateID} =0)) And (RS3ID in (0,{SaleOrderStatusStmtGlobalRpt.RegionID}) Or {SaleOrderStatusStmtGlobalRpt.RegionID} =0 )", sampleResultObject,);
4242

43+
// const devExpressFilter = convertSQLToAst("ISNULL(SourceID,0) = {ServiceOrderDocument.SourceID} OR ISNULL(SourceID,0) = 0");
44+
// const devExpressFilterresult = convertAstToDevextreme(devExpressFilter.ast, devExpressFilter.variables,{'ServiceOrderDocument.SourceID': 2});
4345
// console.log("DevExpress Filter:", JSON.stringify(devExpressFilter, null, 2));
46+
// console.log("DevExpress Result:", JSON.stringify(devExpressFilterresult, null, 2));
47+

tests/parser.test.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,14 @@ describe("Parser SQL to dx Filter Builder", () => {
138138
"or",
139139
["BranchID", "!=", 12]
140140
]
141+
},
142+
{
143+
input: "ISNULL(SourceID,0) = {ServiceOrderDocument.SourceID} OR ISNULL(SourceID,0) = 0",
144+
expected: [
145+
["SourceID", "=", 2],
146+
"or",
147+
["SourceID", "=", 0]
148+
]
141149
}
142150
];
143151

@@ -201,5 +209,6 @@ const sampleData = {
201209
"TransferOutwardDocument.RefBranchID": 42,
202210
"TransferOutwardDocument.CompanyID": 7,
203211
"LeadDocument.BranchID": 42,
204-
"LeadDocument.CompanyID": 7
212+
"LeadDocument.CompanyID": 7,
213+
"ServiceOrderDocument.SourceID": 2
205214
};

0 commit comments

Comments
 (0)