fix formatting

This commit is contained in:
skylar 2024-06-20 20:39:16 -05:00
parent 32e614865c
commit 8e52f971c9

View File

@ -11,11 +11,7 @@ SELECT
ORDER BY pg_total_relation_size(relid) DESC;
```
If you see shit like log_490586 and table_345345345345 in there, that's repack remnants.
```
To clean this up, simply drop the repack extension with the CASCADE option and re-add it to the database:
If you see shit like log_490586 and table_345345345345 in there, that's repack remnants. To clean this up, simply drop the repack extension with the CASCADE option and re-add it to the database:
```
DROP EXTENSION pg_repack CASCADE;
CREATE EXTENSION pg_repack;