@cubejs-backend/mssql-driver 0.33.57 → 0.33.58
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 +11 -0
- package/driver/MSSqlDriver.js +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## [0.33.58](https://github.com/cube-js/cube/compare/v0.33.57...v0.33.58) (2023-09-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* new methods for step-by-step db schema fetching ([#7058](https://github.com/cube-js/cube/issues/7058)) ([a362c20](https://github.com/cube-js/cube/commit/a362c2042d4158ae735e9afe0cfeae15c331dc9d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.33.57](https://github.com/cube-js/cube/compare/v0.33.56...v0.33.57) (2023-09-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @cubejs-backend/mssql-driver
|
package/driver/MSSqlDriver.js
CHANGED
|
@@ -321,6 +321,12 @@ class MSSqlDriver extends BaseDriver {
|
|
|
321
321
|
wrapQueryWithLimit(query) {
|
|
322
322
|
query.query = `SELECT TOP ${query.limit} * FROM (${query.query}) AS t`;
|
|
323
323
|
}
|
|
324
|
+
|
|
325
|
+
capabilities() {
|
|
326
|
+
return {
|
|
327
|
+
incrementalSchemaLoading: true,
|
|
328
|
+
};
|
|
329
|
+
}
|
|
324
330
|
}
|
|
325
331
|
|
|
326
332
|
module.exports = MSSqlDriver;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/mssql-driver",
|
|
3
3
|
"description": "Cube.js MS SQL database driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "0.33.
|
|
5
|
+
"version": "0.33.58",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.git",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
},
|
|
14
14
|
"main": "driver/MSSqlDriver.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@cubejs-backend/base-driver": "^0.33.
|
|
16
|
+
"@cubejs-backend/base-driver": "^0.33.58",
|
|
17
17
|
"mssql": "^6.1.0"
|
|
18
18
|
},
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"publishConfig": {
|
|
21
21
|
"access": "public"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "49caef372253236528bcf96b74fbda2447709541"
|
|
24
24
|
}
|