|
|
|
|
|
by e12e
3917 days ago
|
|
I've not tried it, but according to PostgreSQL documentation, this should be possible (and recommended) to set on a per role basis? > The ALTER ROLE command allows both global and per-database settings to be overridden with user-specific values. (...) > The SET command allows modification of the current value of those parameters that can be set locally to a session; it has no effect on other sessions. The corresponding function is set_config(setting_name, new_value, is_local). (...) > Setting statement_timeout in postgresql.conf is not recommended because it would affect all sessions. |
|