sqlparser-devexpress 2.2.4 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/core/converter.js +2 -2
package/package.json
CHANGED
package/src/core/converter.js
CHANGED
|
@@ -7,7 +7,7 @@ import { LOGICAL_OPERATORS } from "../constants.js";
|
|
|
7
7
|
function DevExpressConverter() {
|
|
8
8
|
// Global variables accessible throughout the converter
|
|
9
9
|
let resultObject = null;
|
|
10
|
-
|
|
10
|
+
let EnableShortCircuit = true;
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* Main conversion function that sets up the global context
|
|
@@ -376,5 +376,5 @@ const devExpressConverter = DevExpressConverter();
|
|
|
376
376
|
* @returns {Array|null} DevExpress format filter
|
|
377
377
|
*/
|
|
378
378
|
export function convertToDevExpressFormat({ ast, resultObject = null, enableShortCircuit = true }) {
|
|
379
|
-
return devExpressConverter.init(ast, resultObject,enableShortCircuit);
|
|
379
|
+
return devExpressConverter.init(ast, resultObject, enableShortCircuit);
|
|
380
380
|
}
|