-
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.
137630: go.mod: bump Pebble to 42bb0f47f1c5 r=rickystewart a=jbowens Changes: * [`42bb0f47`](cockroachdb/pebble@42bb0f47) cache: tiny tweaks to readShard * [`e12d2c0a`](cockroachdb/pebble@e12d2c0a) metamorphic: allow KeyFormat to customize formatting of keys * [`af3c4e6d`](cockroachdb/pebble@af3c4e6d) metamorphic: allow KeyFormats to specify parse functions for keys * [`8a1bd363`](cockroachdb/pebble@8a1bd363) metamorphic: add KeyFormat type * [`06528112`](cockroachdb/pebble@06528112) internal/compact: defer retrieval of external values * [`d556bba4`](cockroachdb/pebble@d556bba4) sstable: optimize allocation of uncompressed buffers * [`924a6698`](cockroachdb/pebble@924a6698) sstable: don't clone the last key for each data buffer * [`4949684b`](cockroachdb/pebble@4949684b) cache,db: de-dup concurrent attempts to read the same block * [`ab9741a3`](cockroachdb/pebble@ab9741a3) arenaskl: remove node.allocSize field * [`0f9bf63d`](cockroachdb/pebble@0f9bf63d) cockroachkvs: add TestKeySchema_KeySeeker * [`f8627724`](cockroachdb/pebble@f8627724) cockroachkvs: add TestKeySchema_KeyWriter * [`d713b4dc`](cockroachdb/pebble@d713b4dc) cockroachkvs: fix seek keys in testdata/seek * [`415dace2`](cockroachdb/pebble@415dace2) go.mod: add github.com/olekukonko/tablewriter * [`567ce9bf`](cockroachdb/pebble@567ce9bf) cockroachkvs: add TestKeySchema_RandomKeys * [`39980a61`](cockroachdb/pebble@39980a61) cockroachkvs: move from internal/crdbtest Release note: none. Epic: none. 137730: clusterversion: make SkipWhenMinSupportedVersionIsAtLeast take Key r=dt a=dt Using the int 24 or 25 doesn't work because of offsetting, ie. 1000024>25, even though 24 < 25. Instead let's just use Keys -- the only way we really want code to talk about versions anyway. We can and should let MinSupported be a key > 0, so this should still allow the desired behavior of simply raising MinSupported and have the test start skipping itself. Release note: none. Epic: none. Co-authored-by: Jackson Owens <[email protected]> Co-authored-by: David Taylor <[email protected]>
- Loading branch information
Showing
6 changed files
with
13 additions
and
17 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 |
---|---|---|
|
@@ -1845,10 +1845,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "dfd82d8e65c0b4cf44629de5ad07104a327c80d2cd515a387fc008f6051df040", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20241206160845-91e091aa3637", | ||
sha256 = "aaaf950e1cca1dd6e254b9a01a7267a9d4d509f0aacb8dd09134d50557c1a6b8", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20241217154139-42bb0f47f1c5", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20241206160845-91e091aa3637.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20241217154139-42bb0f47f1c5.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
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