Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo committed Jan 9, 2025
1 parent 94c2b62 commit 869286c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ SELECT vacuum_backup(
-- keep at least for 7 days.
MIN_RETENTION_DAYS => 7,
-- keep at most 5 full backups.
MAX_FULL_BACKUPS = 5,
MAX_FULL_BACKUPS => 5,
-- keep at least 2 full backups.
MIN_FULL_BACKUPS = 2,
MIN_FULL_BACKUPS => 2,
-- keep at most 10 incremental backups.
MAX_INCREMENTAL_BACKUPS = 10,
MAX_INCREMENTAL_BACKUPS => 10,
);
```

Expand Down

0 comments on commit 869286c

Please sign in to comment.