-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: * [`8b6d64f2`](cockroachdb/pebble@8b6d64f2) db: drop hints that produce too many virtual sstables * [`9522f394`](cockroachdb/pebble@9522f394) go.mod: bump crlib * [`8989e4e6`](cockroachdb/pebble@8989e4e6) colblk: don't use InitWithDefault for block lengths * [`88babd74`](cockroachdb/pebble@88babd74) colblk: improve Uint encoding for very few rows * [`fbbf7403`](cockroachdb/pebble@fbbf7403) sstable: fix unaligned slice panic * [`9d8e2884`](cockroachdb/pebble@9d8e2884) internal/crdbtest: use the key seeker pool * [`482762d6`](cockroachdb/pebble@482762d6) colblk: fix UintBuilder inconsistent size bug * [`2c80e44d`](cockroachdb/pebble@2c80e44d) colblk: add test demonstrating Size bug * [`248af3ef`](cockroachdb/pebble@248af3ef) sstable: new layout format * [`a09523b0`](cockroachdb/pebble@a09523b0) cmd/pebble: enable columnar blocks in ycsb benchmarks Release note: none. Epic: none.
- Loading branch information
Showing
4 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1755,10 +1755,10 @@ def go_deps(): | |
name = "com_github_cockroachdb_crlib", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/cockroachdb/crlib", | ||
sha256 = "bc618ad0028237b72a7b2a8d9383a4721333f577822ac73aa5a30cf382840e55", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20240904210011-3474b320e3bf", | ||
sha256 = "6b60d27f36168c3133b8dd06ab6435a5ecbe68119fc1f44d8663fa3a06aa29b9", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20241015224233-894974b3ad94", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/crlib/com_github_cockroachdb_crlib-v0.0.0-20240904210011-3474b320e3bf.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/crlib/com_github_cockroachdb_crlib-v0.0.0-20241015224233-894974b3ad94.zip", | ||
], | ||
) | ||
go_repository( | ||
|
@@ -1848,10 +1848,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "94bed05f2ccb2ca982ffe0d5ec4f708f6581ccb7cb7d58334896ee1ce660b040", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20241013170524-8079611f00bc", | ||
sha256 = "c18276fb68bfeff93edfbc563ed2f07d4956e2627ba9461d26830720ed3e03d7", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20241016162652-8b6d64f23a33", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20241013170524-8079611f00bc.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20241016162652-8b6d64f23a33.zip", | ||
], | ||
) | ||
go_repository( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters