mononoke: add new idx flag

Summary:
It was added on the client side in D30686450 (7eb11cb392) to handle octopus merges correctly,
let's add it on mononoke as well, otherwise new_streaming_clone fails to parse
a revlog.

Reviewed By: mitrandir77

Differential Revision: D31305651

fbshipit-source-id: 976d7fdb8775f859e4732fd8a68f9b28f04ce4f9
This commit is contained in:
Stanislau Hlebik 2021-09-30 06:59:54 -07:00 committed by Facebook GitHub Bot
parent 21bb613c25
commit 7221a52147

View File

@ -53,6 +53,7 @@ bitflags! {
// Per-revision flags
bitflags! {
pub struct IdxFlags: u16 {
const OCTOPUS_MERGE = 1 << 12;
const EXTSTORED = 1 << 13;
const CENSORED = 1 << 15;
}