dobo-clickhouse 2.2.3 → 2.2.4

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.
@@ -69,7 +69,7 @@ async function factory () {
69
69
 
70
70
  where () {
71
71
  let sql = super.where()
72
- sql = sql.replace(' ESCAPE ?', '')
72
+ sql = (sql ?? '').replace(' ESCAPE ?', '')
73
73
  return sql
74
74
  }
75
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dobo-clickhouse",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "Clickhouse driver for Dobo",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/wiki/CHANGES.md CHANGED
@@ -3,6 +3,7 @@
3
3
  ## 2026-02-01
4
4
 
5
5
  - [2.2.3] Bug fix for query with regex
6
+ - [2.2.4] Bug fix on query compiler
6
7
 
7
8
  ## 2026-01-30
8
9