I have an autovacuum process running on pg_toast:
select query, from pg_stat_activity where query like '%autov%';
"autovacuum: VACUUM pg_toast.pg_toast_15404513 "
How do I find out what table/index/whatever this pg_toast pertains to? Or is the autovacuum working on something else?
Here's a shorter way:
where
15404513
ispg_toast_
suffix.I think you'll want something like:
It'd be nice if Pg reported this in the vacuum command summary.