Skip to content

Commit 377eb4b

Browse files
committed
node: 'graphman copy status': Use bigger columns for next and target
The vids for huge subgraphs can go into the billions; this change makes the columns big enough for that
1 parent 28fa444 commit 377eb4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

node/src/manager/commands/copy.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ pub fn status(pools: HashMap<Shard, ConnectionPool>, dst: &DeploymentSearch) ->
336336
println!();
337337

338338
println!(
339-
"{:^30} | {:^8} | {:^8} | {:^8} | {:^8}",
339+
"{:^30} | {:^10} | {:^10} | {:^8} | {:^8}",
340340
"entity type", "next", "target", "batch", "duration"
341341
);
342342
println!("{:-<74}", "-");
@@ -352,7 +352,7 @@ pub fn status(pools: HashMap<Shard, ConnectionPool>, dst: &DeploymentSearch) ->
352352
None => ".",
353353
};
354354
println!(
355-
"{} {:<28} | {:>8} | {:>8} | {:>8} | {:>8}",
355+
"{} {:<28} | {:>10} | {:>10} | {:>8} | {:>8}",
356356
status,
357357
table.entity_type,
358358
table.next_vid,

0 commit comments

Comments
 (0)