It's possible to set toast reloptions for tables that don't have toasttables at all. e.g.
create table test (c1 integer);ALTER TABLE test SET (toast.autovacuum_enabled = off);
Why?
-- Simon Riggs www.2ndQuadrant.com