The hint table (hint_plan.hints) is not dumped by pg_dump because it is not marked as Extension Configuration Tables.
Is there a reason why not mark it as the configuration table?
The pg_extension_config_dump('hint_plan.hints', '') should be added to extension's script.
This makes it eisier to migrate the database instance that contains the data of hint_plan.hints by using pg_dump/pg_restore.
The hint table (hint_plan.hints) is not dumped by pg_dump because it is not marked as Extension Configuration Tables. Is there a reason why not mark it as the configuration table?
The pg_extension_config_dump('hint_plan.hints', '') should be added to extension's script. This makes it eisier to migrate the database instance that contains the data of hint_plan.hints by using pg_dump/pg_restore.