Skip to content

Commit 0f877d4

Browse files
authored
fix(cubesql): Improve performance for wide table querying (#7534)
* fix(cubesql): Improve performance for wide table querying * Upgrade rust * Update snapshots for WideCube * Fix clippy * Revert minijinja version * Update deps as windows fails
1 parent 95f01ee commit 0f877d4

File tree

76 files changed

+2864
-1261
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+2864
-1261
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Rust
1818
uses: actions-rs/toolchain@v1
1919
with:
20-
toolchain: nightly-2022-03-22
20+
toolchain: nightly-2023-12-13
2121
override: true
2222
components: rustfmt
2323
- name: Install Node.js 16.x
@@ -90,7 +90,7 @@ jobs:
9090
- name: Install Rust
9191
uses: actions-rs/toolchain@v1
9292
with:
93-
toolchain: nightly-2022-03-22
93+
toolchain: nightly-2023-12-13
9494
override: true
9595
components: rustfmt
9696
target: ${{ matrix.target }}
@@ -198,7 +198,7 @@ jobs:
198198
- name: Install Rust
199199
uses: actions-rs/toolchain@v1
200200
with:
201-
toolchain: nightly-2022-03-22
201+
toolchain: nightly-2023-12-13
202202
override: true
203203
components: rustfmt
204204
target: ${{ matrix.target }}
@@ -293,7 +293,7 @@ jobs:
293293
- name: Install Rust
294294
uses: actions-rs/toolchain@v1
295295
with:
296-
toolchain: nightly-2022-03-22
296+
toolchain: nightly-2023-12-13
297297
override: true
298298
components: rustfmt
299299
- name: Install Python

.github/workflows/push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Install Rust
6161
uses: actions-rs/toolchain@v1
6262
with:
63-
toolchain: nightly-2022-03-22
63+
toolchain: nightly-2023-12-13
6464
override: true
6565
components: rustfmt
6666
- name: Install Node.js ${{ matrix.node-version }}
@@ -115,7 +115,7 @@ jobs:
115115
- name: Install Rust
116116
uses: actions-rs/toolchain@v1
117117
with:
118-
toolchain: nightly-2022-03-22
118+
toolchain: nightly-2023-12-13
119119
override: true
120120
components: rustfmt
121121
- name: Install Node.js 16.x
@@ -162,7 +162,7 @@ jobs:
162162
- name: Install Rust
163163
uses: actions-rs/toolchain@v1
164164
with:
165-
toolchain: nightly-2022-03-22
165+
toolchain: nightly-2023-12-13
166166
override: true
167167
components: rustfmt
168168
- name: Install Node.js 16.x
@@ -304,7 +304,7 @@ jobs:
304304
- name: Install Rust
305305
uses: actions-rs/toolchain@v1
306306
with:
307-
toolchain: nightly-2022-03-22
307+
toolchain: nightly-2023-12-13
308308
override: true
309309
components: rustfmt
310310
- name: Install Node.js ${{ matrix.node-version }}

.github/workflows/rust-cubesql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install Rust
2929
uses: actions-rs/toolchain@v1
3030
with:
31-
toolchain: nightly-2022-03-22
31+
toolchain: nightly-2023-12-13
3232
override: true
3333
components: rustfmt, clippy
3434
- uses: Swatinem/rust-cache@v2
@@ -105,7 +105,7 @@ jobs:
105105
- name: Install Rust
106106
uses: actions-rs/toolchain@v1
107107
with:
108-
toolchain: nightly-2022-03-22
108+
toolchain: nightly-2023-12-13
109109
override: true
110110
components: rustfmt
111111
- uses: Swatinem/rust-cache@v2
@@ -148,7 +148,7 @@ jobs:
148148
- name: Install Rust
149149
uses: actions-rs/toolchain@v1
150150
with:
151-
toolchain: nightly-2022-03-22
151+
toolchain: nightly-2023-12-13
152152
override: true
153153
components: rustfmt
154154
target: ${{ matrix.target }}
@@ -250,7 +250,7 @@ jobs:
250250
- name: Install Rust
251251
uses: actions-rs/toolchain@v1
252252
with:
253-
toolchain: nightly-2022-03-22
253+
toolchain: nightly-2023-12-13
254254
override: true
255255
components: rustfmt
256256
target: ${{ matrix.target }}
@@ -332,7 +332,7 @@ jobs:
332332
- name: Install Rust
333333
uses: actions-rs/toolchain@v1
334334
with:
335-
toolchain: nightly-2022-03-22
335+
toolchain: nightly-2023-12-13
336336
override: true
337337
components: rustfmt
338338
- name: Install Python

0 commit comments

Comments
 (0)