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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqlparser-devexpress",
3
- "version": "2.2.4",
3
+ "version": "2.3.0",
4
4
  "main": "src/index.js",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -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
- const EnableShortCircuit = true;
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
  }