Reputation: 369
Team, We have updated aggressive analyze factor from table level like below. Options: autovacuum_analyze_threshold=400
Now we would like to rollback with default value. can anyone suggest how to do it.
Upvotes: 1
Views: 513
Reputation:
You can use the reset
option of the ALTER TABLE statement for that:
alter table the_table
reset (autovacuum_analyze_threshold);
Upvotes: 4