Postgres pg_toast in autovacuum - which table?

前端 未结 2 1430
我在风中等你
我在风中等你 2021-02-12 23:57

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_154045         


        
2条回答
  •  清酒与你
    2021-02-13 00:26

    Here's a shorter way:

    select 15404513::regclass;
    

    where 15404513 is pg_toast_ suffix.

提交回复
热议问题