Skip to content
Snippets Groups Projects
Commit 0abf5eba authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

rhg: make rhg recognise it supports zstd compression for revlogs

It already did, but was not aware of it.

Differential Revision: https://phab.mercurial-scm.org/D10324
parent 8bca353b
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,7 @@
SHARESAFE_REQUIREMENT,
SPARSEREVLOG_REQUIREMENT,
RELATIVE_SHARED_REQUIREMENT,
REVLOG_COMPRESSION_ZSTD,
// As of this writing everything rhg does is read-only.
// When it starts writing to the repository, it’ll need to either keep the
// persistent nodemap up to date or remove this entry:
......@@ -151,3 +152,7 @@
/// `.hg/store/requires` are present.
#[allow(unused)]
pub(crate) const SHARESAFE_REQUIREMENT: &str = "share-safe";
/// A repository that use zstd compression inside its revlog
#[allow(unused)]
pub(crate) const REVLOG_COMPRESSION_ZSTD: &str = "revlog-compression-zstd";
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment