Hi, I am looking for a way to describe, in my Python model, that a table should have autovacuum_vacuum_scale_factor and autovacuum_analyze_scale_factor set to a non-default value. Similar to what the following statement would do:
ALTER TABLE public.XX SET (autovacuum_vacuum_scale_factor = 0.1);ALTER TABLE public.YY SET (autovacuum_analyze_scale_factor = 0.05); Any chance you would know how to do that ? Thanks Jordan -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please provide an MCVE: Minimal, Complete, and Verifiable Example. See http://stackoverflow.com/help/mcve for a full description. --- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/sqlalchemy/5e53b2c8-cd1c-4be6-bb5a-ec42f2b502bb%40googlegroups.com.
