我在Postgres服务器上检查了表。
SELECT reloptions
FROM pg_class
WHERE relname = 'log_xxx_table';
我猜测返回数据为"autovacuum_enabled = true"
,但返回数据为null
。
此表有真空日志运行autovacuum。
默认重定位为空但autovacuum_enabled = true?
答案 0 :(得分:2)
reloptions
的默认值为null,表示可配置选项设置为默认值。 autovacuum_enabled
的默认值为true
。您可以在示例中设置它:
create table a_table(id int)
with (autovacuum_enabled = false);
select relname, reloptions
from pg_class
where relname = 'a_table';
relname | reloptions
---------+----------------------------
a_table | {autovacuum_enabled=false}
(1 row)