@cubejs-backend/dremio-driver 1.6.45 → 1.6.47
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/CHANGELOG.md +10 -0
- package/driver/DremioQuery.js +2 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.6.47](https://github.com/cube-js/cube/compare/v1.6.46...v1.6.47) (2026-05-18)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **cubesql:** Correctly escape/unescape LIKE patterns ([#10862](https://github.com/cube-js/cube/issues/10862)) ([43331cc](https://github.com/cube-js/cube/commit/43331cc4cc572c469809ecd4bf48bc06b473d55f))
|
|
11
|
+
|
|
12
|
+
## [1.6.46](https://github.com/cube-js/cube/compare/v1.6.45...v1.6.46) (2026-05-11)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @cubejs-backend/dremio-driver
|
|
15
|
+
|
|
6
16
|
## [1.6.45](https://github.com/cube-js/cube/compare/v1.6.44...v1.6.45) (2026-05-11)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @cubejs-backend/dremio-driver
|
package/driver/DremioQuery.js
CHANGED
|
@@ -165,6 +165,8 @@ class DremioQuery extends BaseQuery {
|
|
|
165
165
|
templates.functions.DATEDIFF = 'DATE_DIFF(DATE, DATE_TRUNC(\'{{ date_part }}\', {{ args[1] }}), DATE_TRUNC(\'{{ date_part }}\', {{ args[2] }}))';
|
|
166
166
|
templates.functions.STRING_AGG = 'LISTAGG({% if distinct %}DISTINCT {% endif %}{{ args_concat }})';
|
|
167
167
|
templates.expressions.interval_single_date_part = 'CAST({{ num }} as INTERVAL {{ date_part }})';
|
|
168
|
+
templates.expressions.like = '{{ expr }} {% if negated %}NOT {% endif %}LIKE {{ pattern }}{% if default_escape %} ESCAPE \'\\\'{% endif %}';
|
|
169
|
+
delete templates.expressions.ilike;
|
|
168
170
|
templates.quotes.identifiers = '"';
|
|
169
171
|
return templates;
|
|
170
172
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/dremio-driver",
|
|
3
3
|
"description": "Cube.js Dremio driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "1.6.
|
|
5
|
+
"version": "1.6.47",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.git",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
"lint:fix": "eslint driver/*.js"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@cubejs-backend/base-driver": "1.6.
|
|
26
|
-
"@cubejs-backend/schema-compiler": "1.6.
|
|
27
|
-
"@cubejs-backend/shared": "1.6.
|
|
25
|
+
"@cubejs-backend/base-driver": "1.6.47",
|
|
26
|
+
"@cubejs-backend/schema-compiler": "1.6.47",
|
|
27
|
+
"@cubejs-backend/shared": "1.6.47",
|
|
28
28
|
"axios": "^1.8.3",
|
|
29
29
|
"sqlstring": "^2.3.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@cubejs-backend/linter": "1.6.
|
|
33
|
-
"@cubejs-backend/testing-shared": "1.6.
|
|
32
|
+
"@cubejs-backend/linter": "1.6.47",
|
|
33
|
+
"@cubejs-backend/testing-shared": "1.6.47",
|
|
34
34
|
"jest": "^29"
|
|
35
35
|
},
|
|
36
36
|
"license": "Apache-2.0",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"eslintConfig": {
|
|
41
41
|
"extends": "../cubejs-linter"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "4da660922cfcba864ba5c71437f2d9926a87abaa"
|
|
44
44
|
}
|