postgresql.conf comparison

compare your Configuration

The compare your Configuration feature has been removed. To compare your Postgres configuration against defaults for your version explore the data returned by the following query.

    SELECT *
        FROM pg_catalog.pg_settings
        WHERE boot_val != setting
    ;