Skip to content

Commit bfac13a

Browse files
committed
Merge remote-tracking branch 'up/main' into range-shuffle
2 parents 22311f0 + 3f3a9f7 commit bfac13a

File tree

265 files changed

+12288
-3192
lines changed

Some content is hidden

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

265 files changed

+12288
-3192
lines changed

.github/actions/publish_binary/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ runs:
4141
4242
- name: Sync normal release to R2
4343
shell: bash
44+
continue-on-error: true
4445
if: inputs.category == 'default'
4546
run: |
4647
aws s3 cp ${{ steps.name.outputs.name }}.tar.gz s3://repo/databend/${{ inputs.version }}/${{ steps.name.outputs.name }}.tar.gz --no-progress --checksum-algorithm=CRC32

.github/actions/publish_deb/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ runs:
5656
5757
- name: Publish to S3
5858
shell: bash
59+
continue-on-error: true
5960
working-directory: scripts/distribution/deb
6061
run: |
6162
aws s3 sync dists s3://repo/deb/dists --delete --no-progress --checksum-algorithm=CRC32

.github/actions/test_logs/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ runs:
3333
bash ./tests/logging/test-logs.sh
3434
3535
- name: Run History Tables Tests
36+
env:
37+
LOG_HISTORY_STORAGE_S3_ACCESS_KEY_ID: 'minioadmin'
38+
LOG_HISTORY_STORAGE_S3_SECRET_ACCESS_KEY: 'minioadmin'
3639
shell: bash
3740
run: |
3841
bash ./tests/logging/test-history-tables.sh

Cargo.lock

Lines changed: 46 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ base64 = "0.22"
263263
bincode = { version = "2.0.0-rc.3", features = ["serde", "std", "alloc"] }
264264
bincode_v1 = { package = "bincode", version = "1.3.3" }
265265
bitpacking = "0.8.0"
266+
bitvec = "1.0.1"
266267
blake3 = "1.3.1"
267268
bollard = { version = "0.17" }
268269
borsh = { version = "1.2.1", features = ["derive"] }
@@ -311,6 +312,7 @@ enumflags2 = { version = "0.7.7", features = ["serde"] }
311312
ethnum = { version = "1.5.1" }
312313
faststr = "0.2"
313314
feature-set = { version = "0.1.1" }
315+
feistel-permutation-rs = "0.1.1"
314316
flatbuffers = "25" # Must use the same version with arrow-ipc
315317
foreign_vec = "0.1.0"
316318
form_urlencoded = { version = "1" }
@@ -393,7 +395,7 @@ num = "0.4.0"
393395
num-bigint = "0.4.6"
394396
num-derive = "0.4.2"
395397
num-traits = "0.2.19"
396-
num_cpus = "1.13.1"
398+
num_cpus = "1.17"
397399
object = "0.36.5"
398400
object_store_opendal = { version = "0.52.0" }
399401
once_cell = "1.15.0"
@@ -464,14 +466,15 @@ reqwest-hickory-resolver = "0.2"
464466
ringbuffer = "0.14.2"
465467
rmp-serde = "1.1.1"
466468
roaring = { version = "^0.10", features = ["serde"] }
467-
rotbl = { version = "0.1.2", features = [] }
469+
rotbl = { version = "0.2.3", features = [] }
468470
rust_decimal = "1.26"
469471
rustix = "0.38.37"
470472
rustls = { version = "0.23.27", features = ["ring", "tls12"], default-features = false }
471473
rustls-pemfile = "2"
472474
rustls-pki-types = "1"
473475
rustyline = "14"
474476
scroll = "0.12.0"
477+
self_cell = "1.2.0"
475478
semver = "1.0.14"
476479
serde = { version = "1.0.164", features = ["derive", "rc"] }
477480
serde_derive = "1"
@@ -542,6 +545,7 @@ wiremock = "0.6"
542545
wkt = "0.11.1"
543546
xorf = { version = "0.11.0", default-features = false, features = ["binary-fuse"] }
544547
xorfilter-rs = "0.5"
548+
zerocopy = "0.8.26"
545549
zip = "3.0.0"
546550
zstd = "0.12.3"
547551

0 commit comments

Comments
 (0)