Is there any possibility to get a configuration value with a select in Postgres? For example smthng like this?
SELECT max_locks_per_transaction from config_table
select current_setting('max_locks_per_transaction');
Or select from pg_settings
select *
from pg_settings
where name = 'max_locks_per_transaction'