Skip to content

Commit c57c405

Browse files
committed
chore: format files
1 parent 7d4dcc8 commit c57c405

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1934,7 +1934,10 @@ mod postgres {
19341934

19351935
let table_size: i64 = self
19361936
.client
1937-
.query_one(&format!(r#"SELECT pg_total_relation_size('"{name}"')"#), &[])
1937+
.query_one(
1938+
&format!(r#"SELECT pg_total_relation_size('"{name}"')"#),
1939+
&[],
1940+
)
19381941
.await?
19391942
.get(0);
19401943
let table_size = helpers::format_size(table_size as f64);

0 commit comments

Comments
 (0)