Commit dcb12ce8 authored by Simon Riggs's avatar Simon Riggs

Fix VACUUM_TRUNCATE_LOCK_WAIT_INTERVAL

lazy_truncate_heap() was waiting for
VACUUM_TRUNCATE_LOCK_WAIT_INTERVAL, but in microseconds
not milliseconds as originally intended.

Found by code inspection.

Simon Riggs
parent 67e1e2aa
...@@ -1747,7 +1747,7 @@ lazy_truncate_heap(Relation onerel, LVRelStats *vacrelstats) ...@@ -1747,7 +1747,7 @@ lazy_truncate_heap(Relation onerel, LVRelStats *vacrelstats)
return; return;
} }
pg_usleep(VACUUM_TRUNCATE_LOCK_WAIT_INTERVAL); pg_usleep(VACUUM_TRUNCATE_LOCK_WAIT_INTERVAL * 1000L);
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment