@cubejs-backend/cubestore 1.1.3 → 1.1.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.
- package/README.md +22 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -141,15 +141,31 @@ docker run --rm cubejs/cubestore:latest
|
|
|
141
141
|
|
|
142
142
|
## Development
|
|
143
143
|
|
|
144
|
-
|
|
145
|
-
**.cargo/config.toml** in the current directory with following contents:
|
|
144
|
+
Debian prerequisites (incomplete): `apt-get install lld libssl-dev pkg-config cmake`
|
|
146
145
|
|
|
147
|
-
|
|
148
|
-
|
|
146
|
+
When changing Datafusion or Arrow:
|
|
147
|
+
|
|
148
|
+
Check out https://github.com/cube-js/arrow-rs/tree/cube and
|
|
149
|
+
https://github.com/cube-js/arrow-datafusion/tree/cube and add the
|
|
150
|
+
following to the current directory's `Cargo.toml`. (But remember to
|
|
151
|
+
exclude this from your PR!)
|
|
152
|
+
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
[patch.'https://github.com/cube-js/arrow-rs']
|
|
156
|
+
arquet = { path = "../../../arrow-rs/parquet" }
|
|
157
|
+
arrow = { path = "../../../arrow-rs/arrow" }
|
|
158
|
+
|
|
159
|
+
[patch.'https://github.com/cube-js/arrow-datafusion']
|
|
160
|
+
datafusion = { path = "../../../arrow-datafusion/datafusion" }
|
|
149
161
|
```
|
|
150
162
|
|
|
151
|
-
|
|
152
|
-
|
|
163
|
+
Of course, you can use absolute paths or adjust the paths to your
|
|
164
|
+
chosen checkout location.
|
|
165
|
+
|
|
166
|
+
It is possible that uncommenting the arrow-datafusion
|
|
167
|
+
`.cargo/config.toml` path line works for you too, but it might not, if
|
|
168
|
+
you are making changes in arrow-rs.
|
|
153
169
|
|
|
154
170
|
## License
|
|
155
171
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cubejs-backend/cubestore",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Cube.js pre-aggregation storage layer.",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"typings": "dist/src/index.d.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@cubejs-backend/shared": "1.1.
|
|
40
|
+
"@cubejs-backend/shared": "1.1.4",
|
|
41
41
|
"@octokit/core": "^3.2.5",
|
|
42
42
|
"source-map-support": "^0.5.19"
|
|
43
43
|
},
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
],
|
|
51
51
|
"testEnvironment": "node"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "5593a2a9d0fe75aa74e79ac7217baab6c4935ed5"
|
|
54
54
|
}
|