@cubejs-backend/dremio-driver 1.5.14 → 1.5.16
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 +1 -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.5.16](https://github.com/cube-js/cube/compare/v1.5.15...v1.5.16) (2025-12-17)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **cubesql:** Support `STRING_AGG` SQL push down ([#10256](https://github.com/cube-js/cube/issues/10256)) ([8c82fa5](https://github.com/cube-js/cube/commit/8c82fa5e9d3503bb4c7b5b7fbe85afa8d5656d14))
|
|
11
|
+
|
|
12
|
+
## [1.5.15](https://github.com/cube-js/cube/compare/v1.5.14...v1.5.15) (2025-12-15)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @cubejs-backend/dremio-driver
|
|
15
|
+
|
|
6
16
|
## [1.5.14](https://github.com/cube-js/cube/compare/v1.5.13...v1.5.14) (2025-12-11)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @cubejs-backend/dremio-driver
|
package/driver/DremioQuery.js
CHANGED
|
@@ -163,6 +163,7 @@ class DremioQuery extends BaseQuery {
|
|
|
163
163
|
// really need the date locale formatting here...
|
|
164
164
|
templates.functions.DATE = 'TO_DATE({{ args_concat }},\'YYYY-MM-DD\', 1)';
|
|
165
165
|
templates.functions.DATEDIFF = 'DATE_DIFF(DATE, DATE_TRUNC(\'{{ date_part }}\', {{ args[1] }}), DATE_TRUNC(\'{{ date_part }}\', {{ args[2] }}))';
|
|
166
|
+
templates.functions.STRING_AGG = 'LISTAGG({% if distinct %}DISTINCT {% endif %}{{ args_concat }})';
|
|
166
167
|
templates.expressions.interval_single_date_part = 'CAST({{ num }} as INTERVAL {{ date_part }})';
|
|
167
168
|
templates.quotes.identifiers = '"';
|
|
168
169
|
return templates;
|
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.5.
|
|
5
|
+
"version": "1.5.16",
|
|
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.5.
|
|
26
|
-
"@cubejs-backend/schema-compiler": "1.5.
|
|
27
|
-
"@cubejs-backend/shared": "1.5.
|
|
25
|
+
"@cubejs-backend/base-driver": "1.5.16",
|
|
26
|
+
"@cubejs-backend/schema-compiler": "1.5.16",
|
|
27
|
+
"@cubejs-backend/shared": "1.5.16",
|
|
28
28
|
"axios": "^1.8.3",
|
|
29
29
|
"sqlstring": "^2.3.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@cubejs-backend/linter": "1.5.
|
|
33
|
-
"@cubejs-backend/testing-shared": "1.5.
|
|
32
|
+
"@cubejs-backend/linter": "1.5.16",
|
|
33
|
+
"@cubejs-backend/testing-shared": "1.5.16",
|
|
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": "b29af56bbf2d7293550f91e7ed749f263041f2ea"
|
|
44
44
|
}
|