We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c3d6bd commit a951ba4Copy full SHA for a951ba4
src/lib.rs
@@ -349,6 +349,10 @@ pub fn run(mut config: Config) {
349
compressor.stats.state_groups_changed
350
);
351
352
+ if config.graphs {
353
+ graphing::make_graphs(&state_group_map, new_state_group_map);
354
+ }
355
+
356
if ratio > 1.0 {
357
println!("This compression would not remove any rows. Exiting.");
358
return;
@@ -382,10 +386,6 @@ pub fn run(mut config: Config) {
382
386
new_state_group_map,
383
387
384
388
}
385
-
- if config.graphs {
- graphing::make_graphs(&state_group_map, new_state_group_map);
- }
389
390
391
/// Produce SQL code to carry out changes to database.
0 commit comments