forked from Deuxfleurs/garage
k2v-cli: fix sort_key being partition_key and specify which key
This commit is contained in:
parent
e4f955d672
commit
bb03805b58
1 changed files with 3 additions and 3 deletions
|
@ -277,7 +277,7 @@ struct BatchOutputKind {
|
|||
impl BatchOutputKind {
|
||||
fn display_human_output(&self, values: BTreeMap<String, CausalValue>) -> ! {
|
||||
for (key, values) in values {
|
||||
println!("key: {}", key);
|
||||
println!("sort_key: {}", key);
|
||||
let causality: String = values.causality.into();
|
||||
println!("causality: {}", causality);
|
||||
for value in values.value {
|
||||
|
@ -522,7 +522,7 @@ async fn main() -> Result<(), Error> {
|
|||
value
|
||||
.as_object_mut()
|
||||
.unwrap()
|
||||
.insert("sort_key".to_owned(), k.into());
|
||||
.insert("partition_key".to_owned(), k.into());
|
||||
value
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
|
@ -539,7 +539,7 @@ async fn main() -> Result<(), Error> {
|
|||
}
|
||||
|
||||
let mut to_print = Vec::new();
|
||||
to_print.push(format!("key:\tentries\tconflicts\tvalues\tbytes"));
|
||||
to_print.push(format!("partition_key\tentries\tconflicts\tvalues\tbytes"));
|
||||
for (k, v) in res.items {
|
||||
to_print.push(format!(
|
||||
"{}\t{}\t{}\t{}\t{}",
|
||||
|
|
Loading…
Reference in a new issue